CSS:font-size-adjust
From MDC
[edit] Summary
The font-size-adjust property specifies that font size should be chosen based on the height of lowercase letters rather than the height of capital letters.
This is useful since the legibility of fonts, especially at small sizes, is determined more by the size of lowercase letters than by the size of capital letters. This can cause problems when the first-choice font-family is unavailable and its replacement has a significantly different aspect ratio (the ratio of the size of lowercase letters to the size of the font).
To do this in a way that is compatible with browsers that do not support font-size-adjust, it is specified as a number that the font-size property is multiplied by. This means the value specified for the property should generally be the aspect ratio of the first choice font. For example, a style sheet that specifies font-size: 16px; font-size-adjust: 0.5 is really specifying that the lowercase letters of the font should be 8px high (16px times 0.5).
- Initial value:
none - Applies to: all elements
- Inherited: yes
- Percentages: N/A
- Media:
visual - Computed value: as specified
[edit] Syntax
font-size-adjust: <number> | none | inherit
[edit] Values
-
none - Choose the size of the font based only on the
font-sizeproperty. - <number>
-
Choose the size of the font so that its lowercase letters (as determined by the x-height metric of the font) are the specified number times the
font-size.The number specified should generally be the aspect ratio (ratio of x-height to font size) of the first choice
font-family. This will mean that the first choice font, when available, will appear the same size in browsers, whether or not they supportfont-size-adjust.
[edit] Examples
p{
font: 12px Verdana, sans-serif;
font-size-adjust: 0.58;
}
[edit] Notes
[edit] Specifications
[edit] Browser compatibility
Supported on all platforms starting in Gecko 1.9 / Firefox 3, but supported on Windows only significantly earlier.
[edit] See also
font,
font-family,
font-size,
font-size-adjust,
font-stretch,
font-style,
font-variant,
font-weight,
@font-face