Latest web development tutorials

HTML DOM Style tableLayout property

Style Object Reference Style Objects

Definition and Usage

tableLayout property sets or returns a table cell, row, column display algorithm rules.

grammar

Setting tableLayout properties:

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

Back tableLayout properties:

Object.style.tableLayout

描述
auto 默认。列宽度由单元格内容设定。
  • 这种布局有时是缓慢的,因为它需要在表格完全显示之前访问所有内容。
fixed 列宽度由表格宽度和列宽度设定(不是由单元格内容设定)。
  • fixed 布局的速度比 auto 布局快,因为用户代理在接收到第一行后就可以显示表格。
inherit tableLayout 属性的值从父元素继承。


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support tableLayout property.

Note: IE7 and earlier versions do not support the "inherit" value.IE8 only provides! DOCTYPE supported "inherit". IE9 support "inherit".


Examples

Examples

Set a fixed table layout:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.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>

try it"


Style Object Reference Style Objects