HTML DOM Style tableLayout 屬性

2018-08-04 20:41 更新

Style tableLayout 屬性

Style 對(duì)象參考手冊(cè) Style 對(duì)象

定義和用法

tableLayout 屬性設(shè)置或返回表格單元格、行、列的顯示算法規(guī)則。

語(yǔ)法

設(shè)置 tableLayout 屬性:

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

返回 tableLayout 屬性:

Object.style.tableLayout

描述
auto 默認(rèn)。列寬度由單元格內(nèi)容設(shè)定。
  • 這種布局有時(shí)是緩慢的,因?yàn)樗枰诒砀裢耆@示之前訪問(wèn)所有內(nèi)容。
fixed 列寬度由表格寬度和列寬度設(shè)定(不是由單元格內(nèi)容設(shè)定)。
  • fixed 布局的速度比 auto 布局快,因?yàn)橛脩舸碓诮邮盏降谝恍泻缶涂梢燥@示表格。
inherit tableLayout 屬性的值從父元素繼承。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

嘗試一下 ?


Style 對(duì)象參考手冊(cè) Style 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)