font-size-adjust: none | number;
- none:默认值,不进行 x-height 调整。
- number:指定一个数字,用于调整 x-height。这个值是一个比例,相对于字体的 x-height。
示例:
body {
font-family: 'Georgia', serif;
font-size: 16px;
font-size-adjust: 0.5; /* 50% of x-height adjustment */
}
在上面的示例中,font-size-adjust 被设置为 0.5,表示对于指定的字体,其 x-height 应该是正常 x-height 的一半。这有助于在不同字体之间保持一致的文本大小。
请注意,font-size-adjust 并不是所有浏览器都广泛支持的属性,因此在使用时需要谨慎考虑兼容性问题。
转载请注明出处:http://www.zyzy.cn/article/detail/4192/CSS