Ever wondered how templates use the "Drop Cap" typography?
Want to implement it into your own template? Well here's how!
Add this to the style.css you use:
span.dropcap {
display: block;
font-size: 260%;
float: left;
margin: 0px 4px 0 0;
line-height: 100%;
color: #333;
}
then use this code in your content:
T
his is a dropcap.



