Quote:
Originally Posted by cybmole
the "graceful fall back" idea doesn't really work either, you get a phrase of FULL SIZE CAPS which looks ghastly, if the font-variant is ignored & there are no other qualifiers.
|
That must be because you have the CAPS hardcoded to start with, something like this should really give a graceful fallback:
Code:
<p><span class="first_phrase">This is the first phrase</span> of the chapter...</p>
span.first_phrase {
font-variant: small-caps;
}