欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM align 屬性

定義和用法

align 屬性可設(shè)置或返回?cái)?shù)據(jù)在行中的水平對齊方式。

語法

tablerowObject.align=left|center|right|justify|char

實(shí)例

下面的例子更改了數(shù)據(jù)在行中的水平對齊方式:

<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>