FONT Property In CSS
font Property in CSS
font property Used as a shorthand property to declare all of the font properties at once (except font-size-adjust and font-stretch).
Possible Value:
Separate values by a space in the following order (those that are not defined will use inherited or default initial values): font-style font-variant font-weight font-size line-height font-family
Examplediv { font:italic small-caps bold 1em 1.2em Arial }
div { font:bold 0.8em Verdana }