目录

style fontVariant 属性

示例

将元素的字体设置为"small-caps":

document.getElementById("demo").style.fontVariant = "small-caps";
亲自试一试 »

描述

fontVariant 属性设置或返回字体是否应以小写大写字母显示。

这意味着所有小写字母都将转换为大写字母,但与文本的其余部分相比,这些字母的字体大小将更小。


浏览器支持

Property
fontVariant Yes Yes Yes Yes Yes

语法

返回 fontVariant 属性:

object.style.fontVariant

设置 fontVariant 属性:

object.style.fontVariant = "normal|small-caps|initial|inherit"

属性值

Value Description
normal The font is normal. This is default
small-caps The font is displayed in small capital letters
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 普通的
返回值: 一个字符串,表示普通或小写字母的字体
CSS版本 CSS1

更多示例

示例

返回元素的字体变体:

alert(document.getElementById("demo").style.fontVariant);
亲自试一试 »

相关页面

CSS教程:CSS 字体

CSS 参考:字体变体属性

HTML DOM 参考:字体属性