07 Fonts
Font formats
Font families:font-family: Verdana, Arial, Helvetica, Sans-Serif;
Font sizes: font-size:18px; (px / em)
Font weight: font-weight:bold;;
Font styles: font-style:"....";
Font color: color:#ff6600;
Text formatting
space between letters: letter-spacing:10px;
space between words: word-spacing:10px;
line height: line-height:10px; Attention, is inherited to td
negative values are possible
Text decorations
text-decoration:none;
values: underline, overline, line-through, none
text-transform:uppercase;
values: uppercase, lowercase, capitalize
Text alignment
h1 { text-align:center; }
values: left, right, center und justify
Vertical alignment
.menu { vertical-align:top; }
values: top,bottom, baseline (at the base line of the font),
sub and super (subscript and superscript).
Text breaks
white-space can influence the line break behavior of paragraphs
.nobr { white-space:nowrap; }
values: nowrap (no automatic line break),
pre (line breaks as in the HTML source, corresponds to the HTML pre tag)
normal (normal line breaks).


print


KILL IE6