font-size-adjust 属性可用于指定字体的纵横值(数字比例),控制字体的 x 高度(小写字母的高度)。
这可确保后备字体相对于指定字体保持一致的视觉大小和比例。
属性值
<number>:指定代表的数值宽高比值,即字体的 x 高度与 font-family 属性指定的字体的 x 高度的比率。
none:指定不会根据 x 高度进行字体大小调整。
<keyword>:指定要标准化的字体规格:
ex-height:x 高度除以字体大小。
cap-height:使用大写高度除以字体大小。
ch-width:标准化字体的水平窄间距。
ic-width:标准化字体的水平宽间距。
ic-height:标准化字体的垂直宽间距。
适用
所有 HTML 元素。
DOM 语法
object.style.fontSizeAdjust = "0.61";
注意:"Firefox"浏览器支持 font-size-adjust 属性。
CSS font-size-adjust: 基本示例
这里是一个示例:
<html>
<head>
<style>
p {
padding: 5px;
border: 2px solid blue;
}
p.p1 {
font-family: 'Courier New', Courier, monospace;
font-size-adjust:none;
}
p.p2 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20pt;
font-size-adjust: 0.6;
}
p.p3 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20pt;
font-size-adjust: ex-height 0.6;
}
</style>
</head>
<body>
<h2>Font-size</h2>
<p class="p1">
The font-size-adjust is none.
</p>
<p class="p2">
The font-size-adjust is 0.6 on font-size 20pt.
</p>
<p class="p3">
The font-size-adjust is ex-height and 0.6 on font-size 20pt.
</p>
</body>
</html>