Skip to content

Commit 0265139

Browse files
committed
[css-grid] Fix example.
1 parent 8dcab8f commit 0265139

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

css-grid/Overview.bs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2165,7 +2165,9 @@ Line-based Placement: the 'grid-row-start', 'grid-column-start', 'grid-row-end',
21652165
/* Line 6 to line 9 */
21662166

21672167
grid-column-start: span C; grid-column-end: span C;
2168-
/* Error: both properties compute to <a value for="<grid-line>">auto</a> */
2168+
/* Error: The end span is ignored, and an auto-placed
2169+
item can't span to a named line.
2170+
Equivalent to ''grid-column: span 1;''. */
21692171

21702172
grid-column-start: 5; grid-column-end: C -1;
21712173
/* Line 5 to line 9 */

css-grid/Overview.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
</p>
9090
<h1 class="p-name no-ref" id=title>CSS Grid Layout Module Level 1</h1>
9191
<h2 class="no-num no-toc no-ref heading settled heading" id=subtitle><span class=content>Editor’s Draft,
92-
<span class=dt-updated><span class=value-title title=20140305>5 March 2014</span></span></span></h2>
92+
<span class=dt-updated><span class=value-title title=20140307>7 March 2014</span></span></span></h2>
9393
<div data-fill-with=spec-metadata><dl><dt>This version:<dd><a class=u-url href=http://dev.w3.org/csswg/css-grid/>http://dev.w3.org/csswg/css-grid/</a><dt>Latest version:<dd><a href=http://www.w3.org/TR/css-grid-1/>http://www.w3.org/TR/css-grid-1/</a><dt>Editor’s Draft:<dd><a href=http://dev.w3.org/csswg/css-grid/>http://dev.w3.org/csswg/css-grid/</a><dt>Previous Versions:<dd><a href=http://www.w3.org/TR/2013/WD-css3-grid-layout-20130402/ rel=previous>http://www.w3.org/TR/2013/WD-css3-grid-layout-20130402/</a><dd><a href=http://www.w3.org/TR/2012/WD-css3-grid-layout-20121106/ rel=previous>http://www.w3.org/TR/2012/WD-css3-grid-layout-20121106/</a>
9494
<dt>Feedback:</dt>
9595
<dd><a href="mailto:www-style@w3.org?subject=%5Bcss-grid%5D%20feedback">www-style@w3.org</a>
@@ -2166,7 +2166,9 @@ <h3 class="heading settled heading" data-level=8.2 id=line-placement><span class
21662166
/* Line 6 to line 9 */
21672167

21682168
grid-column-start: span C; grid-column-end: span C;
2169-
/* Error: both properties compute to <a class=css-code data-link-for="<grid-line>" data-link-type=value href=#grid-placement-auto title=auto>auto</a> */
2169+
/* Error: The end span is ignored, and an auto-placed
2170+
item can’t span to a named line.
2171+
Equivalent to <a class=css data-link-type=propdesc href=#propdef-grid-column title=grid-column>grid-column: span 1;</a>. */
21702172

21712173
grid-column-start: 5; grid-column-end: C -1;
21722174
/* Line 5 to line 9 */

0 commit comments

Comments
 (0)