Any reason not to use :first-letter in an ePub?
Code:
p.initial:first-letter
{
font-size: 2.5em;
line-height: 0
}
Code:
<p class="initial">Once upon a time...</p>
Or, if you have a chapter name before the paragraph that needs an Initial
Code:
h1+p:first-letter
{
font-size: 2.5em;
line-height: 0
}
Code:
<h1>Chapter One</h1>
<p>This line has an initial.</p>
<p>This line doesn't have an initial</p>
I'm new to making ePub so I'm trying to figure out what not to use (even if it's allowed by the spec).