Quote:
Originally Posted by phossler
Thanks for the suggestion, but I didn't see any difference in the way ADE displayed the sub and super scripts
Possibly did it wrong
Code:
.sup {
vertical-align: baseline;
position: relative;
top: -0.4em;
font-size: 70%;
line-height:0;
}
.sub {
vertical-align: baseline;
position: relative;
top: 0.4em;
font-size: 70%;
line-height:0;
}
The subscripts (using .sub above seem to sit on the baseline, and not 'sub' to it.)
Paul
|
I think you need to set the line height on the regular text to 0, not in the sub and sup. Anyway try playing with various line-height values.