HTML DOM align 属性
定义和用法
align 属性可设置或返回数据在行中的水平对齐方式。
语法
tablerowObject.align=left|center|right|justify|char
实例
下面的例子更改了数据在行中的水平对齐方式:
<html>
<head>
<script type="text/javascript">
function leftAlign()
{
document.getElementById('header').align="left";
}
</script>
</head>
<body>
<table width="100%" border="1">
<tr id="header">
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick="leftAlign()"
value="Left-align table row" />
</body>
</html>