table-layout
CSS property sets the algorithm used to lay out
<table>
cells, rows, and columns.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
/* Keyword values */ table-layout: auto; table-layout: fixed; /* Global values */ table-layout: inherit; table-layout: initial; table-layout: unset;
auto
By default, most browsers use an automatic table layout algorithm. The widths of the table and its cells are adjusted to fit the content.
fixed
table
and
col
elements or by the width of the first row of cells. Cells in subsequent rows do not affect column widths.
overflow
property to determine whether to clip any overflowing content, but only if the table has a known width; otherwise, they won't overflow the cells.
| 初始值 |
auto
|
|---|---|
| 适用于 |
table
and
inline-table
elements
|
| 继承 | no |
| 计算值 | 如指定 |
| 动画类型 | discrete |
auto | fixed
This example uses a fixed table layout, combined with the
width
property, to restrict the table's width. The
text-overflow
property is used to apply an ellipsis to words that are too long to fit. If the table layout were
auto
, the table would grow to accomodate its contents, despite the specified
width
.
<table> <tr><td>Ed</td><td>Wood</td></tr> <tr><td>Albert</td><td>Schweitzer</td></tr> <tr><td>Jane</td><td>Fonda</td></tr> <tr><td>William</td><td>Shakespeare</td></tr> </table>
table {
table-layout: fixed;
width: 120px;
border: 1px solid red;
}
td {
border: 1px solid blue;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
CSS Level 2 (Revision 1)
The definition of 'table-layout' in that specification. |
推荐 | 初始定义。 |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
table-layout
|
Chrome 完整支持 14 | Edge 完整支持 12 | Firefox 完整支持 1 | IE 完整支持 5 | Opera 完整支持 7 | Safari 完整支持 1 | WebView Android 完整支持 1.5 | Chrome Android 完整支持 18 | Firefox Android 完整支持 4 | Opera Android 完整支持 10.1 | Safari iOS 完整支持 3 | Samsung Internet Android 完整支持 1.0 |
完整支持
border-collapse
border-spacing
caption-side
empty-cells
table-layout
vertical-align