I've noticed that when trying to use superscript or subscript in the following way...
<ul>
<li><b>Mean Radius</b> 6,371.0 km</li>
<li><b>Mean Circumference</b> 40,041.47 km</li>
<li><b>Surface Area</b> 510,072,000 km<sup>2</sup></li>
<li><b>Volume</b> 1.0832073 × 10<sup>12</sup> km<sup>3</sup></li>
<li><b>Mass</b> 5.9736 × 10<sup>24</sup> kg</li>
<li><b>Mean Density</b> 5.5153 g/cm<sup>3</sup></li>
<li><b>Axial Tilt</b> 23.439281°</li>
</ul>
What winds up happening is that the height of the entire line is adjusted for the superscripted or subscripted text and the text on the left in bold is vertically centered in this line. This makes the bolded text look a little weird since it seems like it's floating slightly above the bottom of the line and isn't aligned with the other text. I've tried making a larger line-height in CSS, but that only makes the effect more visable. Vertical-align also didn't seem to even do anything. So I'm kinda out of ideas now.
Would anyone know how to have all text in a line (regardless of line-height, subscript, superscript, etc) printed on the bottom of that line?
PS - I've viewed this on Chrome 6 and Firefox 3.6.9 and it happens in both, so I'm assuming this is a universal problem, not a browser problem. I've also noticed that text always seems to center itself vertically in a line regardless of line-height, so the problem apparently becomes that since a line of text with superscript takes up more 'height' than a line of text without, its centering wouldn't line up with the other line's.