Skip to content

Instantly share code, notes, and snippets.

@kogakure
Created November 7, 2012 11:37
Show Gist options
  • Save kogakure/4030985 to your computer and use it in GitHub Desktop.
Save kogakure/4030985 to your computer and use it in GitHub Desktop.
CSS: Prevent Superscripts and Subscripts from Affecting Line-Height
/* http://css-tricks.com/snippets/css/prevent-superscripts-and-subscripts-from-affecting-line-height/ */
sup, sub {
vertical-align: baseline;
position: relative;
top: -0.4em;
}
sub { top: 0.4em; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment