欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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ì)象