CSS, How To – Shorthand Properties

Sunday, 2. August 2009

The background property combines background-color, background-image, background-repeat, background-attachment, and background-position.

h1 {

border: 1px solid gray;
background: yellow url(tint.jpg) repeat-y 100% 0;

}

The list -style property combines list-style-types, list-style-postition, and list-style-image.

ul {

list-style: square inside;

}

Padding and Margins: Top, Right, Bottom and Left

p {

padding: 1em 2em 3em 4em;
margin: 5px 4px 3px 1px;

}