@@ -119,21 +119,21 @@ spec:css21; type:property; text:max-width
119119 The following 'display' values assign table formatting rules to an arbitrary element:
120120
121121 <dl id="display-types">
122- <dt> <dfn>table</dfn> (In HTML: TABLE )
122+ <dt> <dfn>table</dfn> (equivalent to HTML: <table> )
123123 <dd> Specifies that an element defines a block-level table:
124124 it is a rectangular block that participates in a block formatting context.
125125
126- <dt> <dfn>inline-table</dfn> (In HTML: TABLE )
126+ <dt> <dfn>inline-table</dfn> (equivalent to HTML: <table> )
127127 <dd> Specifies that an element defines an inline-level table:
128128 it is a rectangular block that participates in an inline formatting context).
129129
130- <dt> <dfn>table-row</dfn> (In HTML: TR )
130+ <dt> <dfn>table-row</dfn> (equivalent to HTML: <tr> )
131131 <dd> Specifies that an element is a row of cells.
132132
133- <dt> <dfn>table-row-group</dfn> (In HTML: TBODY )
133+ <dt> <dfn>table-row-group</dfn> (equivalent to HTML: <tbody> )
134134 <dd> Specifies that an element groups one or more rows.
135135
136- <dt> <dfn>table-header-group</dfn> (In HTML: THEAD )
136+ <dt> <dfn>table-header-group</dfn> (equivalent to HTML: <thead> )
137137 <dd> Like table-row-group, but for visual formatting,
138138 the first such row group is always displayed before all other rows and row groups.
139139
@@ -143,7 +143,7 @@ spec:css21; type:property; text:max-width
143143 the others are treated as if they had <code> display: table-row-group</code> .
144144 </div>
145145
146- <dt> <dfn>table-footer-group</dfn> (In HTML: TFOOT )
146+ <dt> <dfn>table-footer-group</dfn> (equivalent to HTML: <tfoot> )
147147 <dd> Like table-row-group, but for visual formatting,
148148 the fist such row group is always displayed after all other rows and row groups.
149149
@@ -153,16 +153,16 @@ spec:css21; type:property; text:max-width
153153 the others are treated as if they had <code> display: table-row-group</code> .
154154 </div>
155155
156- <dt> <dfn>table-column</dfn> (In HTML: COL )
156+ <dt> <dfn>table-column</dfn> (equivalent to HTML: <col> )
157157 <dd> Specifies that an element describes a column of cells.
158158
159- <dt> <dfn>table-column-group</dfn> (In HTML: COLGROUP )
159+ <dt> <dfn>table-column-group</dfn> (equivalent to HTML: <colgroup> )
160160 <dd> Specifies that an element groups one or more columns.
161161
162- <dt> <dfn>table-cell</dfn> (In HTML: TD, TH )
162+ <dt> <dfn>table-cell</dfn> (equivalent to HTML: <td> or <th> )
163163 <dd> Specifies that an element represents a table cell.
164164
165- <dt> <dfn>table-caption</dfn> (In HTML: CAPTION )
165+ <dt> <dfn>table-caption</dfn> (equivalent to HTML: <caption> )
166166 <dd> Specifies a caption for the table.
167167 Table captions are positioned between the table margins and its borders.
168168 </dl>
0 commit comments