CSS 8
Properties of FONT
3.Font-Variant
A font can be displayed in two variants
- Normal
- Small-Caps
small-caps font is a font that uses smaller sized capitalized letter.
TAG: { font-variant: small-caps;}
{ font-variant: normal; }
4.Font-Size
This is used to change the size of FONT.
Tag : {font-size: 30px ;}
{font-size: 30pt ;}
{font-size: 120% ;}
{font-size: 3em ;}
5.Font-Weight
This specifies the boldness or heaviness for a font.
Tag: {font-weight:800;}
{font-weight:normal;}
0 Comments