Quote:
Originally Posted by ewphoenix123
Interesting, doesn't seem to work with the stylesheet I use in my books, time for some comparison work.
|
Another approach I have used with books where the font size is set in em at the paragraph level is to set the font size to 1em at the body level, and then scale up the other font sizes.
E.g. say you have font sizes set like this:
Code:
p {font-size:1em}
h1 {font-size:2em}
then change it to:
Code:
body {font-size:1em}
p {font-size:1.3em}
h1 {font-size:2.6em}
This should result in the paragraph level line spacing being 1.3/1.3 = 1.0 at the minimum slider setting.