HTML DOM textAlign 属性
定义和用法
textAlign 属性对齐元素中的文本。
语法:
- Object.style.textAlign=left|right|center|justify
可能的值
值 | 描述 |
---|---|
left | 把文本排列到左边。默认值:由浏览器决定。 |
right | 把文本排列到右边。 |
center | 把文本排列到中间。 |
justify | 根据 textJustify 属性对齐文本。 |
实例
本例对齐一段文本:
- <html>
- <head>
- <script type="text/javascript">
- function setTextAlign()
- {
document.getElementById("p1").style.textAlign="right";
- }
- </script>
- </head>
- <body>
- <p id="p1">This is an example paragraph.</p>
- <input type="button" onclick="setTextAlign()"
- value="Align text" />
- </body>
- </html>