CSS font-kerning Property

Clash Royale CLAN TAG#URR8PPP googletag.cmd.push(function() googletag.display('div-gpt-ad-1422003450156-2'); );
CSS font-kerning Property
❮
Reference
❯
Example
Specify that font kerning is applied:
div
font-kerning: normal;
Try it Yourself »
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 | ? |
googletag.cmd.push(function() googletag.display('div-gpt-ad-1493883843099-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 |
❮
Reference
❯