font-style

font-style
CSS font-style Property
The CSS font-style property is used to specify italic or oblique font faces of text in an element.
CSS CODE EXAMPLE
<style type="text/css">
#p1 {
    font-style: italic;
}
</style>
<p id="p1">Paragraph content ...</p>
 
Paragraph content ...

Possible Values:

italic •• oblique •• normal •• inherit

0 Response to "font-style"

Post a Comment