HTML DOM textAlign 属性

定义和用法

textAlign 属性对齐元素中的文本。

语法:

  1. Object.style.textAlign=left|right|center|justify

可能的值

描述
left 把文本排列到左边。默认值:由浏览器决定。
right 把文本排列到右边。
center 把文本排列到中间。
justify 根据 textJustify 属性对齐文本。

实例

本例对齐一段文本:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function setTextAlign()
  5. {
  6. document.getElementById("p1").style.textAlign="right";
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <p id="p1">This is an example paragraph.</p>
  13.  
  14. <input type="button" onclick="setTextAlign()"
  15. value="Align text" />
  16.  
  17. </body>
  18. </html>