Quote:
Originally Posted by Doonge
As long as the line spacing is superior than 1 (which should be, less than 1 harms seriously readibility right?), nothing happens would be my guess and it behaves as expected. I just tried this with calibre on my computer, I did not test on an ereader so perhaps you know more than I do.
|
If the line-height of the raise-cap is set to zero then it works even if the user sets the line spacing below 1. e.g.
Code:
span.raise-cap {
font-size: 3em;
line-height: 0;
}
p.opening-para {
text-indent: 0;
padding-top: 2em;
}
<p class="opening-para"><span class="raise-cap">T</span>his raise-cap doesn't affect the line-height of the paragraph.</p>