Quote:
Originally Posted by Jellby
Code:
span.drop {
font-weight: bold;
font-size: 300%;
}
and in the HTML:
Code:
<p><span class="drop">T</span>his is the first paragraph of the chapter.</p>
Code:
h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
text-indent: 0;
}
and make sure the chapter headings are indeed marked with <h1> to <h6>
Use <i> for italic.
For the margin:
Code:
@page {
margin: 25%;
}
but I'm sure that's not what you want.
|
Thank you.
Especially for the span part

saved my life with that.