font-size-adjust property
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:
Floating-point number, the font aspect value. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
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?
|
Supported by tags:
a, abbr, acronym, address, b, bdo, big, blink, blockQuote, body, button, caption, center, cite, code, col, colGroup, dd, del, dfn, dir, div, dl, dt, em, fieldSet, font, form, H1, H2, H3, H4, H5, H6, html, i, input:button, input:file, input:password, input:reset, input:submit, input:text, ins, isIndex, kbd, label, legend, li, marquee, menu, ol, optGroup, option, p, pre, s, samp, select, small, span, strike, strong, sub, sup, table, tBody, td, textArea, tFoot, th, tHead, tr, tt, u, ul, var
Related pages:
color
font
font-family
font-size
font-style
font-variant
font-weight
text-align
text-align-last
text-autospace
text-decoration
text-indent
text-justify
text-kashida-space
text-overflow
text-shadow
text-transform
text-underline-position
font
font-family
font-size
font-style
font-variant
font-weight
text-align
text-align-last
text-autospace
text-decoration
text-indent
text-justify
text-kashida-space
text-overflow
text-shadow
text-transform
text-underline-position
External links:
User Contributed Comments