Style tableLayout 屬性

Style 對象參考手冊 Style 對象

定義和用法

tableLayout 屬性設置或返回表格單元格、行、列的顯示演算法規則。

語法

設置 tableLayout 屬性:

Object.style.tableLayout="automatic|fixed|inherit"

返回 tableLayout 屬性:

Object.style.tableLayout

描述
auto 默認。列寬度由單元格內容設定。
  • 這種佈局有時是緩慢的,因為它需要在表格完全顯示之前訪問所有內容。
fixed 列寬度由表格寬度和列寬度設定(不是由單元格內容設定)。
  • fixed 佈局的速度比 auto 佈局快,因為用戶代理在接收到第一行後就可以顯示表格。
inherit tableLayout 屬性的值從父元素繼承。


流覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要流覽器都支持 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>



Style 對象參考手冊 Style 對象