Quote:
Originally Posted by Karellen
I recently discovered that font-variant: small-caps; does not work in epubs used in Kobo Libra2
Now I have also noticed that quotes are a bit temperamental.
For example, when a character reads a printed document verbatim, it is usually displayed with wider margins, and maybe italicized. I tried replicating this with the following using <p class="quote"></p>
But the Libra2 completely ignored that and the quoted text just looked like the rest of the page.
The Libra2 expects <blockquote></blockquote>, then it displayed as quoted text.
|
It may be because you've specified the left/right increased margins as 50px, i.e absolute units. Try using em units instead, e.g. this is what I use:
Code:
margin-left: 2em;
margin-right: 2em;
but use whatever works for you.
I think a <blockquote> has default increased left/right margins even if you don't include any explicit CSS for it.