Both of you, thanks! :-)
So it's like this:
USE:
font-style: italic;
text-indent: 1.3em;
complex selectors (h2 + p, div.poetry, div.stanza p) mostly works, but don't get too smart.
AVOID:
text-transform: uppercase;
visibility: hidden;
font-variant:smallcaps; (but it *should* be supported)
margin: auto;
pseudo-elements (:first-letter, :first-line, :before ...).
Also avoid cascade
How about fonts? I guess that
font-family: sans-serif;
font-family: serif;
will be safe, but can I trust that any of the 'web-safe-fonts' are on the system?
And how about line-height and letter-spacing?
Last edited by Kasper Hviid; 06-05-2013 at 07:13 AM.
|