Question:

Describe the function of the font-variant property and explain the different values that this property can take and the effect of each of these values.


What's the function?

The font-variant is used to give change text to small caps or to normal which is the default.

Normal font-variant:

I'm normal font-variant text.


Small-Caps font-variant:

I'm small-caps font-variant text.

Syntax

  * {
    font-variant:small-caps; /* most of the time you wont use normal value */
}