You are here: Reference > CSS > properties > font-size-adjust

font-size-adjust property

Browser support:
Specifies font aspect value (font size divided by x-height).
The font-size-adjust property is useful if you want to set the size of lowercase letters. It specifies the factor by which the font size is multiplied.
JavaScript page for this property: fontSizeAdjust. You can find other example(s) there.

Possible values:

 One of the following values: 
aspect value (floating-point)
Floating-point number, the font aspect value.
inherit
Takes the value of this property from the computed style of the parent element.
none
Font aspect value is not changed.
Default: none.

Example HTML code 1:

This example illustrates the use of the font-size-adjust property:
<head>
    <style>
        .adjust63 {
            font-size-adjust: 0.63;
        }
        .adjust126 {
            font-size-adjust: 1.26;
        }
    </style>
</head>
<body>
    <span class="adjust63">font-size-adjust: 0.63</span><br />
    <span class="adjust126">font-size-adjust: 1.26</span>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content