font-variant

font-variant
CSS font-variant Property
The CSS font-variant property is used to specify that all lowercase letters be replaced by small capital letters. The lowercase letters will become capitalized while keeping their small size in proportion to the actual capital letters.
CSS CODE EXAMPLE
<style type="text/css">
h2 {
    font-variant:small-caps;
}
</style>
<h2>This is my section heading</h2>
 

This is my section heading

Possible Values:

small-caps •• normal •• inherit

0 Response to "font-variant"

Post a Comment