aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/table-layout/index.html
blob: cdcb6bc8868cc946cd8b9cb65b4277e17da389df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
---
title: table-layout
slug: Web/CSS/table-layout
tags:
  - CSS
  - table-layout
  - 单元格
  - 表格
translation_of: Web/CSS/table-layout
---
<div>{{CSSRef}}</div>

<div></div>

<p><strong>table-layout </strong>CSS属性定义了用于布局表格<em>单元格</em><em></em><em></em>的算法。</p>

<pre><code>/* Keyword values */
table-layout: auto;
table-layout: fixed;

/* Global values */
table-layout: inherit;
table-layout: initial;
table-layout: unset;</code></pre>

<p>{{cssinfo}}</p>

<h2 id="Syntax" name="Syntax">语法</h2>

<pre class="brush: css">/* Keyword values */
table-layout: auto;
table-layout: fixed;

/* Global values */
table-layout: inherit;
table-layout: initial;
table-layout: unset;
</pre>

<h3 id="Values" name="Values"></h3>

<dl>
 <dt>{{Cssxref("auto")}}</dt>
 <dd>大多数浏览器采用自动表格布局算法对表格布局。表格及单元格的宽度取决于其包含的内容。</dd>
 <dt><code>fixed</code></dt>
 <dd>表格和列的宽度通过表格的宽度来设置,某一列的宽度仅由该列首行的单元格决定。在当前列中,该单元格所在行之后的行并不会影响整个列宽。<br>
 <br>
 使用 “fixed” 布局方式时,整个表格可以在其首行被下载后就被解析和渲染。这样对于 “automatic” 自动布局方式来说可以加速渲染,但是其后的单元格内容并不会自适应当前列宽。任何一个包含溢出内容的单元格可以使用 {{Cssxref("overflow")}}  属性控制是否允许内容溢出。</dd>
</dl>

<h3 id="正式语法">正式语法</h3>

{{csssyntax}}

<h2 id="示例">示例</h2>

<p>本示例使用了fixed的表格布局,结合{{cssxref("width")}}属性来限制表格的宽。{{cssxref("text-overflow")}} 属性用于文字过长时显示省略号。</p>

<p>如果表格的布局是auto,即使指定了表格的width,表格仍然会自适应内容自动撑开。</p>

<h3 id="HTML">HTML</h3>

<pre class="brush: html"><code>&lt;table&gt;
 &lt;tr&gt;&lt;td&gt;Ed&lt;/td&gt;&lt;td&gt;Wood&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;Albert&lt;/td&gt;&lt;td&gt;Schweitzer&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;Jane&lt;/td&gt;&lt;td&gt;Fonda&lt;/td&gt;&lt;/tr&gt;
 &lt;tr&gt;&lt;td&gt;William&lt;/td&gt;&lt;td&gt;Shakespeare&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</code>
</pre>

<h3 id="CSS">CSS</h3>

<pre class="brush: css"><code>table {
 table-layout: fixed;
 width: 120px;
 border: 1px solid red;
}

td {
 border: 1px solid blue;
 overflow: hidden;
 white-space: nowrap;
 text-overflow: ellipsis;
}</code>
</pre>

<h3 id="结果">结果</h3>

<p>{{EmbedLiveSample('示例')}}</p>

<h2 id="Specifications" name="Specifications">规范</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('CSS2.1', 'tables.html#width-layout', 'table-layout')}}</td>
   <td>{{Spec2('CSS2.1')}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容性</h2>

<article>
<p>{{Compat("css.properties.table-layout")}}</p>
</article>

<div id="compat-mobile"></div>