Quote:
Originally Posted by GeoffR
|
I took a look at that book. Interesting use of non-existent styles.
Code:
<p class="cap noindent"><span class="dcap"><span class="dropcap">T</span>HE QUIET VOICE</span>
The cap and dcap styles don't exist in any of the 6 stylesheets in the ebook.
so removing the non-existent, I got:
Code:
<p class="noindent"><span class="dropcap">T</span>HE QUIET VOICE
The dropcap style is:
Code:
span.dropcap {
font-size: 300%;
font-weight: bold;
float: left;
margin: -0.1em 0.125em -0.2em 0em;
text-indent: 0em;
line-height: 1em;
height: 1em;}
which look quite similar to the one I use as dropcap2.
Regards,
David