diff --git a/guide/english/miscellaneous/html-and-css-cheat-sheet/index.md b/guide/english/miscellaneous/html-and-css-cheat-sheet/index.md index b5a939ecef..0850919f14 100644 --- a/guide/english/miscellaneous/html-and-css-cheat-sheet/index.md +++ b/guide/english/miscellaneous/html-and-css-cheat-sheet/index.md @@ -42,6 +42,19 @@ This can be of use in a CSS navigation menu. The key is to make the height of th ``` More neat tricks can be found here +## Drop Caps + +A drop caps is a large capital letter letter used at the beginning of a text block. +```css +p:first-letter{ + display:block; + float:left; + margin:3px; + color:#f00; + font-size:300%; + } + ``` + ## Center a horizontal list http://csswizardry.com/2011/01/create-a-centred-horizontal-navigation/