Skip to content

Instantly share code, notes, and snippets.

@townivan
Created September 23, 2014 18:52
Show Gist options
  • Save townivan/29815c04c31a04b94caf to your computer and use it in GitHub Desktop.
Save townivan/29815c04c31a04b94caf to your computer and use it in GitHub Desktop.
Prevent superscripts from breaking line-height
sup, sub {
vertical-align: baseline;
position: relative;
top: -0.4em;
}
sub { top: 0.4em; }
/*
Source: http://css-tricks.com/snippets/css/prevent-superscripts-and-subscripts-from-affecting-line-height/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment