CSS font-style property
Usage
Sets the style of the font. Used for making text italic or oblique.
Values
- normal - default
- italic
- oblique
Example
Code:
h3 {
font-style: italic;
}
Sets the style of the font. Used for making text italic or oblique.
h3 {
font-style: italic;
}