CSS Properties

If you use Link back

font-family: indicates the font you use
example: font-family: arial;
font-size: you can adjust the font size
example: font-size: 10px;
font-style: so you can make your text in italics
values: italic, normal, underline, bold
example: font-style: italic;
font-weight: your text will be in bold
values: normal, bold
example: font-weight: bold;

Text Properties

letter-spacing: the decency between each letter
example: letter-spacing: 1px;
line-height: sets the row height
example: line-height: 5px;
word spacing: the distance between words
example: word-spacing: 1px;
text-shadow: this gives a shadow to your text
example: text-shadow: #333333 1px 1px 1px;
text-transform: determines whether a text should be large or lower case
values: lowercase, uppercase, none
example: text-transform: uppercase;

border properties

border: will give a border around anything
example: border: solid 1px;
border in a different color
example: border-left: 1px solid #000000;
border values: solid, dotted, dashed, none
example: border-left: 1px solid #000000;

Other Properties

padding: is the general padding around anything
example: padding: 3px;
margin: is the general distance to another element
example: margin: 5px;