<sub> and <sup> font sizes are very wrong. Looking in html.css I see:
I changed it to more what I see in FF/Chrome's default styles:
Really it appeared fine as soon as I changed just the font-size from em to %, but copying all of the different styles appears to work correctly as well so I think I am going to stick with that for accuracy's sake. Can you update the defaults to be correct since anything more complicated sets of font-sizes is going to be wrong with the old approach.
sub { vertical-align: sub }
sup { vertical-align: super }
sub, sup { font-size: 0.83em }
I changed it to more what I see in FF/Chrome's default styles:
sub { bottom: -0.25em; }
sup { top: -0.5em; }
sub, sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
Really it appeared fine as soon as I changed just the font-size from em to %, but copying all of the different styles appears to work correctly as well so I think I am going to stick with that for accuracy's sake. Can you update the defaults to be correct since anything more complicated sets of font-sizes is going to be wrong with the old approach.