Skip to content

Instantly share code, notes, and snippets.

@jkeefe
Created October 29, 2021 14:09
Show Gist options
  • Save jkeefe/d3a7bc0b8eda68fc6fc8a11df0bae946 to your computer and use it in GitHub Desktop.
Save jkeefe/d3a7bc0b8eda68fc6fc8a11df0bae946 to your computer and use it in GitHub Desktop.
Prevent sub/superscripts from affecting line height in CSS
// from https://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