CSS Drop Cap

CSS Drop Cap

CSS Drop Cap

Here’s a couple of ways to create that cool looking extra large first letter of a paragraph using two different methods but both using CSS. You can do these either in line CSS or external CSS as an attached stylesheet. The <span> Method .firstletter { display:block; float:left; margin: -0.63em 0.5em 0 -0.56em; height : 4.5em; color:#aaa; } .firstletter span...

Read More