:first-letter

liunx

Guest
How do you align :first-letter ? In firefox a big first letter is aligned way to low by default.You can use the vertical-align property (<!-- m --><a class="postlink" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align">http://www.w3.org/TR/CSS21/visudet.html ... ical-align</a><!-- m -->), such as:

p.first:first-letter {
font-size: xx-large;
font-weight: bold;
vertical-align: baseline;
}thx :)vertical-align:-10px;

doesnt work in ie :mad:
 
Back
Top