CSS:font-variant
font-variant:属性设置小型大写字母的字体,但是所有使用小型大写字体的字母与其余文本相比,字体尺寸小。
所有主流浏览器都支持font-variant属性,除了IE不支持属性值inherit。
值 | |
normal | 默认值。浏览器会显示一个标准的字体。 |
small-caps | 会显示小型大写字母的字体。 |
inherit | 从父元素继承font-variant属性的值。 |
例:
.one{
font-variant:normal;
}
.two{
font-variant:small-caps;
}
<p class="one">There is a bee</p>
<p class="two">There is a bee</p>