Style tableLayout 屬性
Style 對(duì)象定義和用法
tableLayout 屬性設(shè)置或返回表格單元格、行、列的顯示算法規(guī)則。
語(yǔ)法
設(shè)置 tableLayout 屬性:
Object.style.tableLayout="automatic|fixed|inherit"
返回 tableLayout 屬性:
Object.style.tableLayout
值 | 描述 |
---|---|
auto | 默認(rèn)。列寬度由單元格內(nèi)容設(shè)定。
|
fixed | 列寬度由表格寬度和列寬度設(shè)定(不是由單元格內(nèi)容設(shè)定)。
|
inherit | tableLayout 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 tableLayout 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實(shí)例
實(shí)例
設(shè)置固定的表格布局:
<html>
<head>
<script>
function displayResult()
{
document.getElementById("myTable").style.tableLayout="fixed";
}
</script>
</head>
<body>
<table id="myTable" width="300" border="1">
<thead>
<th>Table header</th>
<th>Table header</th>
</thead>
<tbody>
<tr>
<td>This is some text. This is some text.</td>
<td>This is another text.</td>
</tr>
</tbody>
</table>
<br>
<button type="button" onclick="displayResult()">Set fixed table layout</button>
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("myTable").style.tableLayout="fixed";
}
</script>
</head>
<body>
<table id="myTable" width="300" border="1">
<thead>
<th>Table header</th>
<th>Table header</th>
</thead>
<tbody>
<tr>
<td>This is some text. This is some text.</td>
<td>This is another text.</td>
</tr>
</tbody>
</table>
<br>
<button type="button" onclick="displayResult()">Set fixed table layout</button>
</body>
</html>
嘗試一下 ?
Style 對(duì)象
更多建議: