font-size-adjust
font-size-adjust
属性允许作者为元素指定一个纵横比值,该值将在替代字体中保留首选字体的 x 高度。
注意:作为表示属性,font-size-adjust
可以用作 CSS 属性。有关更多信息,请参阅 CSS font-size-adjust
属性。
您可以将此属性与以下 SVG 元素一起使用
示例
html
<svg
width="600"
height="80"
viewBox="0 0 500 80"
xmlns="http://www.w3.org/2000/svg">
<text y="20" font-family="Times, serif" font-size="10px">
This text uses the Times font (10px), which is hard to read in small sizes.
</text>
<text y="40" font-family="Verdana, sans-serif" font-size="10px">
This text uses the Verdana font (10px), which has relatively large lowercase
letters.
</text>
<text
y="60"
font-family="Times, serif"
font-size="10px"
font-size-adjust="0.58">
This is the 10px Times, but now adjusted to the same aspect ratio as the
Verdana.
</text>
</svg>
用法说明
规范
规范 |
---|
CSS 字体模块级别 4 # font-size-adjust-prop |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。