1. padding:
padding-top: 0px;
padding-right:20px;
padding-bottom: 30px;
padding-left: 10px;
now we type as
padding: 0px 20px 30px 10px;
padding: 20px; is the same as padding: 20px 20px 20px 20px ;
2. margin:
margin: 0px 20px 30px 10px;
the order is top-right-bottom-left
3. border
border-width: thin;
border-color: black;
border-style: solid;
we use a shortcut for this: border: thin solid black (order isn't matter)
4. background
background-color: white;
background-image: url(imiages/cocktail.png);
background-repeat: repeat-x;
background: white url(images/cocktail.png) repeat-x;
5. font
font: font-style font-variant font-weight font-size/line-height font-family