Style tableLayout 屬性

定義和用法
tableLayout 屬性設置或返回表格單元格、行、列的顯示演算法規則。
語法
設置 tableLayout 屬性:
Object.style.tableLayout="automatic|fixed|inherit"
返回 tableLayout 屬性:
Object.style.tableLayout
值 | 描述 |
---|---|
auto | 默認。列寬度由單元格內容設定。
|
fixed | 列寬度由表格寬度和列寬度設定(不是由單元格內容設定)。
|
inherit | tableLayout 屬性的值從父元素繼承。 |
流覽器支持
所有主要流覽器都支持 tableLayout 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實例
實例
設置固定的表格佈局:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>IT研修(xuhuhu.com)</title>
<script>
function displayResult(){
document.getElementById("myTable").style.tableLayout="fixed";
}
</script>
</head>
<body>
<table id="myTable" width="300" border="1">
<thead>
<th>表格表頭</th>
<th>表格表頭</th>
</thead>
<tbody>
<tr>
<td>這是一些文本。這是一些文本。</td>
<td>這是另一些文本</td>
</tr>
</tbody>
</table>
<br>
<button type="button" onclick="displayResult()">設置固定的表格佈局</button>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>IT研修(xuhuhu.com)</title>
<script>
function displayResult(){
document.getElementById("myTable").style.tableLayout="fixed";
}
</script>
</head>
<body>
<table id="myTable" width="300" border="1">
<thead>
<th>表格表頭</th>
<th>表格表頭</th>
</thead>
<tbody>
<tr>
<td>這是一些文本。這是一些文本。</td>
<td>這是另一些文本</td>
</tr>
</tbody>
</table>
<br>
<button type="button" onclick="displayResult()">設置固定的表格佈局</button>
</body>
</html>
