Skip to content

Instantly share code, notes, and snippets.

@lucasdidthis
Created August 10, 2015 13:17
Show Gist options
  • Save lucasdidthis/3f11274f59dd2514390c to your computer and use it in GitHub Desktop.
Save lucasdidthis/3f11274f59dd2514390c to your computer and use it in GitHub Desktop.
how to add drop caps to your website (example)
article p{
font-family: sans-serif;
}
article p:first-child::first-letter{
float: left;
display: block;
font-family: serif;
font-weight: bold;
font-size: 2em;
line-height: 2em;
padding: 0 0.5em 0 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment