View Single Post
Old 06-16-2013, 11:02 AM   #14
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,834
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by phossler View Post
@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.
RbnJrg is offline   Reply With Quote