Css short for vertical-align background font
1. vertical-align: sub (subscript) | super (superscript) | 5px (move up) |-5px (move down) | top | bottom | text-top | middle2. background Image position: background-position: Portrait (top | center | bottom) horizontal (left | center | right ); // Note: to use this css, you must first set the background to background-attachment: fixed. If only one value is left blank, the default value is center. For example, body {background-position: top right; background-attachment: fixed;} abbreviated form of background-color | background-image | background-repeat | background-attachment | background-position example :. bg01 {background-color: # FFCC66; background-image: url ("path/bgFile.gif"); background-repeat: no-repeat; background-attachment: fixed; background-position: left top;} can be abbreviated :. bg01 {background: # FFCC66 url ("path/bgFile.gif") no-repeat fixed left top;} 3. list: list-style-type: none | disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alphalist-style-position: the inside list item is relatively shifted to the right. | the outside list item is normally displayed (default). Simplified Form: list-style: circle inside url ("sdf.jpg"); 4. simplified form of font: font-style | font-variant | font-weight | font-size | font-family example :. fontStyle01 {font-style: italic; font-variant: small-caps; font-weight: bold; font-size: 30px; font-family: arial, sans-serif ;} the preceding style is abbreviated :. fontStyle01 {font: italic small-caps bold 12px arial, verdana ;}