font

font
CSS font Property
The CSS font property is CSS shorthand for specifying font-stylefont-variantfont-weightfont-size and font-family properties.
CSS CODE EXAMPLE
<style type="text/css">
p.myClass {
    font: italic small-caps bold 18px Arial, Verdana;
}
</style>
<p>Paragraph Content</p>
<p class="myClass">Paragraph Content</p>
 
Paragraph Content
Paragraph Content

Possible Values:

See the following individual properties for values:
font-style
font-variant
font-weight
font-size
font-family

0 Response to "font"

Post a Comment