CSS3.com


CSS FONT-STYLE

CSS font-style is where you define if your font will be italic or not. Possible key terms are the following: italic, oblique, and normal.

Example
body { font-style: italic }
Possible Values
normal: The browser displays a normal font
italic: The browser displays an italic font
oblique: The browser displays an oblique font


Go Back