font-variant
优质
小牛编辑
130浏览
2023-12-01
描述 (Description)
font-variant属性确定在呈现给定元素的文本时使用两个字体面之一。
可能的值 (Possible Values)
normal - 指定普通字体; 也就是说,无论使用哪种字体的默认面。
small-caps - 指定小型大写字母; 也就是说,小写字母呈现为大写字母的面,小写字母小于用于大写字母的字母。
适用于 (Applies to)
所有HTML元素。
DOM语法 (DOM Syntax)
object.style.fontVariant = "small-caps";
例子 (Example)
以下是使用此属性的示例 -
<html>
<head>
</head>
<body>
<p <b>style = "font-variant:small-caps;"</b>>
This text will be rendered as small caps
</p>
</body>
</html>
这将产生以下结果 -