Skip to content

Commit f5a47b7

Browse files
author
gregwhitworth
committed
[css-table] made some editorial changes to HTML model, added comment regarding HTML dependancy needing 0 or more rows due to <caption>
1 parent 67169e2 commit f5a47b7

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

css-tables-3/Overview.bs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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: &lt;table&gt;)
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: &lt;table&gt;)
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: &lt;tr&gt;)
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: &lt;tbody&gt;)
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: &lt;thead&gt;)
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: &lt;tfoot&gt;)
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: &lt;col&gt;)
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: &lt;colgroup&gt;)
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: &lt;td&gt; or &lt;th&gt;)
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: &lt;caption&gt;)
166166
<dd>Specifies a caption for the table.
167167
Table captions are positioned between the table margins and its borders.
168168
</dl>

css-tables-3/issues-ed-20160202.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
Draft: https://drafts.csswg.org/css-tables-3/
22
Title: CSS Table Module Level 3
3-
43
----
54
Issue 1.
65
Summary: Repeating table headers and footers
@@ -18,4 +17,5 @@ Issue 3.
1817
Summary: Table-row-group can be 0 or more rows
1918
From: Gérard Talbot
2019
Comment: https://lists.w3.org/Archives/Public/www-style/2016Mar/0098.html
20+
Comment: https://lists.w3.org/Archives/Public/www-style/2016Mar/0401.html
2121
Open: Under Review

0 commit comments

Comments
 (0)