Quote:
Originally Posted by phossler
@RbnJrg --
So here's the current version in ADE. There's no line spacing changes caused by tghe sub/super scripts (a good thing), the sub/super scripts are readable, the square root looks nice. Only small thing is the line break between the a and the superscript 2 towards the end. I checked and there is no space between.
Paul
|
Hi Paul;
If instead of:
Code:
.overline {
text-decoration: overline;
}
you use:
Code:
.overline {
display: inline-table;
text-indent: 0;
border-top: 1px solid black;
text-align: left !important;
padding-left: 0.5em;
}
I think the "line break" should disappear.
And instead of:
Code:
sup {
line-height: 0;
vertical-align: super;
font-size: 60%;
}
sub {
line-height: 0;
vertical-align: sub;
font-size: 60%;
}
do just one try with:
Code:
sup, sub {
font-size: 60%;
line-height: 50%;
}
I also think here you'll like the result.