The CSS can be made clean with removing the properties names as mentioned below. This can help in reducing the size of CSS in the process of development of website.
Font
Use:
font: 1em/1.5em bold italic serif
…instead of
font-size: 1em; line-height: 1.5em; font-weight: bold; font-style: italic; font-family: serif
Read More “Shorthand CSS Properties” »