Style letterSpacing 屬性
Style 對象定義和用法
letterSpacing 屬性設(shè)置或返回文本中字符之間的空間。
語法
設(shè)置 letterSpacing 屬性:
Object.style.letterSpacing="normal|length|inherit"
返回 letterSpacing 屬性:
Object.style.letterSpacing
值 | 描述 |
---|---|
normal | 默認(rèn)。定義字符間的標(biāo)準(zhǔn)空間。 |
length | 使用 px、cm 等單位定義字符間的空間??墒褂秘?fù)值。 |
inherit | letterSpacing 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 letterSpacing 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實例
實例
更改字符間的空間:
<html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.letterSpacing="15px";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Change letter spacing</button>
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.letterSpacing="15px";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Change letter spacing</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: