How to Prevent Superscripts and Subscripts from Affecting Line-Height
sup, sub { vertical-align: baseline; position: relative; top: -0.4em; } sub { top: 0.4em; } Css code to stop superscripts from bre...
https://iskablogs.blogspot.com/2014/03/how-to-prevent-superscripts-and.html
sup, sub {
vertical-align: baseline;
position: relative;
top: -0.4em;
}
sub { top: 0.4em; }
Css code to stop superscripts from breaking line heights once and for all
vertical-align: baseline;
position: relative;
top: -0.4em;
}
sub { top: 0.4em; }
Css code to stop superscripts from breaking line heights once and for all