CSS font-variant 属性
描述
font-variant属性确定在呈现给定元素文本时使用两种字体之一。
可能的取值
- normal - 指定普通字体;也就是使用的字体的默认字体。
-
small-caps - 指定小型大写字体;也就是小写字母以比大写字母使用的字母更小的大写字母呈现。
适用于
所有HTML元素。
DOM语法
object.style.fontVariant = "small-caps";
示例
以下是使用此属性的示例:
<html>
<head>
</head>
<body>
<p style = "font-variant:small-caps;">
This text will be rendered as small caps
</p>
</body>
</html>
以下是将会产生的结果 −