color: green;
background-color: black;
background: white url("/images/bk.gif") repeat-x;
background: white url("/images/bk.gif") repeat-y;
a { text-decoration:none; }
font-weight: bold;
font-style: italic;
text-decoration: underline;
text-transform: uppercase;
text-transform: capitalize;
margin-top: 5px; margin-right: 10px; margin-bottom: 15px; margin-left: 20px;
Or use shortcut (clockwise start at 12):
margin: 5px 10px 15px 20px;
padding-top: 5px; padding-right: 10px; padding-bottom: 5px; padding-left: 10px;
Shortcut
padding: 5px 10px 5px 10px;
Shorter Cut (if top and bottom & left right same):
padding: 5px 10px;
If you like cheat sheets, you might also like my Regex Cheat Sheet.