Skip to content

Instantly share code, notes, and snippets.

@Ricardo-Diaz
Created October 25, 2012 22:50
Show Gist options
  • Save Ricardo-Diaz/3955961 to your computer and use it in GitHub Desktop.
Save Ricardo-Diaz/3955961 to your computer and use it in GitHub Desktop.
CSS: Drop Cap
Add a drop cap
A.k.a. how to make the first letter of your article bigger than the rest, all classic style.
p:first-letter{
display:block;
margin:5px 0 0 5px;
float:left;
color:#000;
font-size:60px;
font-family:Georgia;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment