亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM fontVariant 屬性

HTML DOM Style 對(duì)象

定義和用法

fontVariant 屬性用于設(shè)置小型大寫(xiě)字母的字體顯示文本

語(yǔ)法:

Object.style.fontVariant=normal|small-caps

可能的值

描述
normal 默認(rèn)。瀏覽器會(huì)顯示一個(gè)標(biāo)準(zhǔn)的字體。
small-caps 瀏覽器會(huì)顯示小型大寫(xiě)字母的字體。

實(shí)例

本例把第一段設(shè)置為小型大寫(xiě)字母:

<html>
<head>
<script type="text/javascript">
function setSmallCaps()
{
document.getElementById("p1").style.fontVariant="small-caps";
}
</script>
</head>
<body>

<p id="p1">This is an example paragraph.</p>
<p>This is another example paragraph.</p>

<input type="button" onclick="setSmallCaps()" 
value="Display small-caps font" />

</body>
</html>

HTML DOM Style 對(duì)象