font-kerning
Quick Summary for font-kerning
The font-kerning CSS property sets the use of the kerning information stored in a font.
Code Usage for font-kerning
font-kerning: auto; font-kerning: normal; font-kerning: none;  /* Global values */ font-kerning: inherit; font-kerning: initial; font-kerning: revert; font-kerning: unset; 
More Details for font-kerning

font-kerning

The font-kerning CSS property sets the use of the kerning information stored in a font.

Kerning defines how letters are spaced. In well-kerned fonts, this feature makes character spacing more uniform and pleasant to read than it would otherwise be.

In the image below, for instance, the examples on the left do not use kerning, while the ones on the right do:

Syntax

font-kerning: auto; font-kerning: normal; font-kerning: none;  /* Global values */ font-kerning: inherit; font-kerning: initial; font-kerning: revert; font-kerning: unset; 

Values

auto

The browser determines whether font kerning should be used or not. For example, some browsers will disable kerning on small fonts, since applying it could harm the readability of text.

normal

Font kerning information stored in the font must be applied.

none

Font kerning information stored in the font is disabled.

Formal definition

Initial valueauto
Applies toall elements. It also applies to ::first-letter and ::first-line.
Inheritedyes
Computed valueas specified
Animation typediscrete

Formal syntax

auto | normal | none

Examples

Enabling and disabling kerning

HTML
<div id="kern"></div> <div id="nokern"></div> <textarea id="input">AV T. ij</textarea> 
CSS
div {   font-size: 2rem;   font-family: serif; }  #nokern {   font-kerning: none; }  #kern {   font-kerning: normal; } 
JavaScript
let input  = document.getElementById('input'); let kern   = document.getElementById('kern'); let nokern = document.getElementById('nokern');  input.addEventListener('keyup', function() {   kern.textContent = input.value; /* Update content */   nokern.textContent = input.value; });  kern.textContent = input.value; /* Initialize content */ nokern.textContent = input.value; 

Specifications

Specification
CSS Fonts Module Level 4 # font-kerning-prop

See also

font-variant, font-variant-position, font-variant-east-asian, font-variant-caps, font-variant-ligatures, font-variant-numeric, font-variant-alternates, font-synthesis, letter-spacing

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)Français日本語Português (do Brasil)中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
I believe that in order to better your knowledge base, it takes a lot of failing in order to succeed. I don't consider anything a failure as long as you get back up and you learn from your own mistakes.
Unknown
Random CSS Property

overflow-y

The overflow-y CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
overflow-y css reference