View Single Post
Old 09-12-2011, 11:55 PM   #11
LaoTseu
Member
LaoTseu began at the beginning.
 
Posts: 20
Karma: 12
Join Date: Sep 2011
Device: Kindke
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).
LaoTseu is offline   Reply With Quote