HTML DOM verticalAlign 属性

定义和用法

verticalAlign 属性设置内容在元素框中的垂直对齐方式。

语法:

  1. Object.style.verticalAlign=value

可能的值

描述
baseline 默认。元素放置在父元素的基线上。
sub 垂直对齐文本的下标。
super 垂直对齐文本的上标
top 把元素的顶端与行中最高元素的顶端对齐
text-top 把元素的顶端与父元素字体的顶端对齐
middle 把此元素放置在父元素的中部。
bottom 把元素的顶端与行中最低的元素的顶端对齐。
text-bottom 把元素的底端与父元素字体的底端对齐。
length
% 使用 "line-height" 属性的百分比值来排列此元素。允许使用负值。

实例

本例设置表格中文本的垂直对齐方式:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function alignText()
  5. {
  6. document.getElementById("td1").style.verticalAlign="bottom";
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <table border="1" height="100px">
  13. <tr>
  14. <td id="td1">
  15. Some example text
  16. </td>
  17. </tr>
  18. </table>
  19. <br />
  20. <input type="button" onclick="alignText()"
  21. value="Align text" />
  22.  
  23. </body>
  24. </html>