Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnologia Web para desenvolvedores
  2. CSS
  3. Referência de CSS
  4. Properties
  5. font-kerning

Esta página foi traduzida do inglês pela comunidade.Saiba mais e junte-se à comunidade MDN Web Docs.

View in EnglishAlways switch to English

font-kerning

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since janeiro de 2020.

A propriedade CSSfont-kerning controla o o uso da informação de kerning, que é, o controle de como as letras serão espaçadas. A informação de kerning é armazenada na fonte, e se a fonte éwell-kerned, essa caracteristica permite que o espaçamento entre caracteres seja muito parecido, independente dos caracteres.

Example of font-kerning

css
font-kerning: auto;font-kerning: normal;font-kerning: none;/* Global values */font-kerning: inherit;font-kerning: initial;font-kerning: unset;
Initial valueauto
Aplica-se aall elements and text. It also applies to::first-letter and::first-line.
Inheritedyes
Computed valueas specified
Animation typediscrete

Syntax

Values

auto

This keyword defers to the browser regarding whether to use kerning. When the font size is small, font kerning may look strange and browsers will disable it. This is the default value.

normal

This keyword requires kerning to be applied.

none

This keyword prevents the browser from using the kerning information stored in the font.

Formal syntax

font-kerning =
auto|
normal|
none

Examples

css
p {  font-kerning: none;}

Specifications

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

Browser Compatibility

Kerning Demo

HTML Content

html
<div></div><div></div><textarea>AV T. ij</textarea>

CSS Content

css
#nokern,#kern {  font-size: 2rem;  font-family: serif;}#nokern {  font-kerning: none;}#kern {  font-kerning: normal;}

JS Content

js
var input = document.getElementById("input"),  kern = document.getElementById("kern"),  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;

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp