Latest web development tutorials

propriedade HTML DOM Estilo TableLayout

Estilo Object Reference estilo Objects

Definição e Uso

TableLayout conjuntos de propriedades ou retorna uma célula da tabela, fila, regras algoritmo de exibição da coluna.

gramática

Definindo as propriedades TableLayout:

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

Voltar propriedades TableLayout:

Object.style.tableLayout

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


Suporte a navegadores

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Todos os principais navegadores suportam TableLayout propriedade.

Nota: IE7 e versões anteriores não suportam o valor "herdar".IE8 só fornece! DOCTYPE suportado "herdar". suporte IE9 "herdar".


Exemplos

Exemplos

Definir um layout de tabela fixo:

<!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>

tente »


Estilo Object Reference estilo Objects