CSS font-kerning Property
Definition and Usage
The font-kerning
property controls the usage of the kerning information
stored in a font.
Tip: Kerning defines how letters are spaced.
Note: For fonts that do not include kerning data, this property will have no visible effect.
Default value: | auto |
---|---|
Inherited: | yes |
Animatable: | no. Read about animatable |
Version: | CSS3 |
JavaScript syntax: | object.style.fontKerning="normal" |
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
Numbers followed by -webkit- specify the first version that worked with a prefix.
Property | |||||
---|---|---|---|---|---|
font-kerning | 32.0 -webkit- | 10.0 | 34.0 | 7.0 | ? |
CSS Syntax
font-kerning: auto|normal|none;
Property Values
Value | Description |
---|---|
auto | Default. The browser determines whether font kerning should be applied or not |
normal | Specifies that font kerning is applied |
none | Specifies that font kerning is not applied |