CSS Reference

Background

background-color: #FFCC66;
background-image: url(images/butterfly.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
background-position: right bottom;

Text

text-indent: 30px;
text-align: justify;
text-decoration: underline;
letter-spacing: 3px;
color: #FF0000;

Font

font-style: italic;
font-weight: bold;
font-size: 30px;
font-family: arial, sans-serif;

Box Model

height: 100px;
width: 200px;
margin: 10px;
border: 5px solid gray;
padding: 5px;

Absolute Positioning

position: absolute;
left: 100px;
top: 200px;
z-index: 1;

CSS Float

float:left;
clear:both;