Quote:
Originally Posted by theducks
This is really an EPUB question (I can move this thread for you)
Yes, that is a good use for a span
Code:
<h3 class="ct"><span class="sc">the stuff to sc</span> the rest of the text </h3>
I believe is the style for the Block level contains the overall style and the span(s), the exceptions to that.
|
If you want a different font for the capitals, then you would have to have a different <span> around them.
e.g.
Code:
<h3 class="ct"><span class="sc">T<span class="lowerSC">he</span> S<span class="lowerSC">tuff</span> T<span class="lowerSC">o</span> S<span class="lowerSC">c</span></span> the rest of the text </h3>
CSS:
.sc {font-family:"ruffles_flourishes"; font-size:1.1em; text-transform:uppercase}
.lowerSC {font-family:serif; font-size:.9em}