Style textAlign 屬性
Style 對象定義和用法
textAlign 屬性設(shè)置或返回塊級元素中文本的水平對齊方式。
語法
設(shè)置 textAlign 屬性:
Object.style.textAlign="left|right|center|justify|inherit"
返回 textAlign 屬性:
Object.style.textAlign
值 | 描述 |
---|---|
left | 默認(rèn)。把文本排列到左邊。 |
right | 把文本排列到右邊。 |
center | 把文本排列到中間。 |
justify | 根據(jù) textJustify 屬性對齊文本。 |
inherit | textAlign 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 textAlign 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實例
實例
居中對齊 p 元素中的文本:
<html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.textAlign="center";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Align text</button>
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.textAlign="center";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Align text</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: