代码示例:(标识:cssref_font-kerning)
<!DOCTYPE html>
<html>
<head>
<style> 
/* 规定应用字体字距调整 */
.ex1 { font-kerning: normal; }

/* 规定不应用字体字距调整 */
.ex2 { font-kerning: none; }
</style>
</head>
<body>

<h1>font-kerning 属性</h1>

<div class="ex1">"STAY 'AWAY'"</div>
<div class="ex2">"STAY 'AWAY'"</div>

</body>
</html>
运行结果: