--- title: font-kerning slug: Web/CSS/font-kerning translation_of: Web/CSS/font-kerning ---
font-kerning
CSS 属性设置是否使用字体中储存的字距信息。
/* Keyword values */ font-kerning: auto; font-kerning: normal; font-kerning: none; /* Global values */ font-kerning: inherit; font-kerning: initial; font-kerning: unset;
Kerning(字距)定义了字母的分布情况。对于良好地规定了字距的字体,字距特性使得字母分布更为统一,阅读体验更佳。如下图所示,左侧的示例没有应用字距,而右侧使用了:
{{cssinfo}}
font-kerning
属性通过以下的关键字进行指定。
auto
normal
none
{{csssyntax}}
<div id="kern"></div> <div id="nokern"></div> <textarea id="input">AV T. ij</textarea>
div { font-size: 2rem; font-family: serif; } #nokern { font-kerning: none; } #kern { font-kerning: normal; }
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;
{{ EmbedLiveSample('Example') }}
规格 | 状态 | 注释 |
---|---|---|
{{SpecName('CSS3 Fonts', '#propdef-font-kerning', 'font-kerning')}} | {{Spec2('CSS3 Fonts')}} | Initial definition. |
{{Compat("css.properties.font-kerning")}}