CSS font-kerning Property
This property is used to control the usage of the Kerning Information that has been stored in the Font. Kerning defines how letters are spaced. This property will have no visible effect for those fonts that do not have kerning information.
Syntax:
font-kerning: auto|normal|none;
Default Value:
- auto
Property:
- auto: It is the default value. The Browser decides whether font-kerning is applied or not.
- normal: It is used to specify that font-kerning is apply normally on the browsers.
- none: It is used to specify that font-kerning is not applied.
Example:
html
<!DOCTYPE html> < html > < head > < title > CSS | font-kerning Property </ title > < style > div { font-family: serif; font-size: 20px; font-weight:bold; } div.geeks { font-kerning: normal; } div.SUDO { font-kerning: auto; } div.gfg { font-Kerning:none; } h1 { color:green; } body { text-align:center; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >The font-kerning Property</ h2 > < h3 >font-kerning:normal;</ h3 > < div class = "geeks" > GeeksforGeeks: A computer science portal for Geeks </ div > < h3 >font-kerning:auto;</ h3 > < div class = "sudo" > GeeksforGeeks: A computer science portal for Geeks</ div > < h3 >font-Kerning:none;</ h3 > < div class = "gfg" > GeeksforGeeks: A computer science portal for Geeks </ div > </ body > </ html > |
Output:
Supported Browsers: The browsers supported by CSS | font-kerning Property are listed below:
- Google Chrome 33.0
- Edge 79.0
- Firefox 32.0
- Opera 20
- Safari 9.0
Please Login to comment...