Styles for first paragraph, line, letter
good html/css samplesJune 2010
p:first-child:first-letter {
float: left;
}
p:first-child:after {
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.post p:first-child:first-letter {
float:left;
background-color: #eeeeee;
line-height:30px;
padding: 5px;
color: #237ab2;
font-weight: bold;
font-size:40px;
}
.post p:first-child:first-line{
font-variant: small-caps;
}
.post p:first-child:after {
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
}