@@ -119,21 +119,21 @@ spec:css21; type:property; text:max-width
119
119
The following 'display' values assign table formatting rules to an arbitrary element:
120
120
121
121
<dl id="display-types">
122
- <dt> <dfn>table</dfn> (In HTML: TABLE )
122
+ <dt> <dfn>table</dfn> (equivalent to HTML: <table> )
123
123
<dd> Specifies that an element defines a block-level table:
124
124
it is a rectangular block that participates in a block formatting context.
125
125
126
- <dt> <dfn>inline-table</dfn> (In HTML: TABLE )
126
+ <dt> <dfn>inline-table</dfn> (equivalent to HTML: <table> )
127
127
<dd> Specifies that an element defines an inline-level table:
128
128
it is a rectangular block that participates in an inline formatting context).
129
129
130
- <dt> <dfn>table-row</dfn> (In HTML: TR )
130
+ <dt> <dfn>table-row</dfn> (equivalent to HTML: <tr> )
131
131
<dd> Specifies that an element is a row of cells.
132
132
133
- <dt> <dfn>table-row-group</dfn> (In HTML: TBODY )
133
+ <dt> <dfn>table-row-group</dfn> (equivalent to HTML: <tbody> )
134
134
<dd> Specifies that an element groups one or more rows.
135
135
136
- <dt> <dfn>table-header-group</dfn> (In HTML: THEAD )
136
+ <dt> <dfn>table-header-group</dfn> (equivalent to HTML: <thead> )
137
137
<dd> Like table-row-group, but for visual formatting,
138
138
the first such row group is always displayed before all other rows and row groups.
139
139
@@ -143,7 +143,7 @@ spec:css21; type:property; text:max-width
143
143
the others are treated as if they had <code> display: table-row-group</code> .
144
144
</div>
145
145
146
- <dt> <dfn>table-footer-group</dfn> (In HTML: TFOOT )
146
+ <dt> <dfn>table-footer-group</dfn> (equivalent to HTML: <tfoot> )
147
147
<dd> Like table-row-group, but for visual formatting,
148
148
the fist such row group is always displayed after all other rows and row groups.
149
149
@@ -153,16 +153,16 @@ spec:css21; type:property; text:max-width
153
153
the others are treated as if they had <code> display: table-row-group</code> .
154
154
</div>
155
155
156
- <dt> <dfn>table-column</dfn> (In HTML: COL )
156
+ <dt> <dfn>table-column</dfn> (equivalent to HTML: <col> )
157
157
<dd> Specifies that an element describes a column of cells.
158
158
159
- <dt> <dfn>table-column-group</dfn> (In HTML: COLGROUP )
159
+ <dt> <dfn>table-column-group</dfn> (equivalent to HTML: <colgroup> )
160
160
<dd> Specifies that an element groups one or more columns.
161
161
162
- <dt> <dfn>table-cell</dfn> (In HTML: TD, TH )
162
+ <dt> <dfn>table-cell</dfn> (equivalent to HTML: <td> or <th> )
163
163
<dd> Specifies that an element represents a table cell.
164
164
165
- <dt> <dfn>table-caption</dfn> (In HTML: CAPTION )
165
+ <dt> <dfn>table-caption</dfn> (equivalent to HTML: <caption> )
166
166
<dd> Specifies a caption for the table.
167
167
Table captions are positioned between the table margins and its borders.
168
168
</dl>
0 commit comments