Skip to content

Commit 09f6107

Browse files
committed
[css-grid-1] Fix some typos. #3410
1 parent cb0e160 commit 09f6107

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

css-grid-1/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ Placing Items</h3>
486486
grid-area: auto; /* Auto-place into next empty area */
487487
grid-area: 2 / 4; /* Place into row 2, column 4 */
488488
grid-area: 1 / 3 / -1; /* Place into column 3, span all rows */
489-
grid-area: header-start / sidebar-start / footer-end / sidebar-start;
489+
grid-area: header-start / sidebar-start / footer-end / sidebar-end;
490490
/* Place using named lines */
491491
</pre>
492492

@@ -497,7 +497,7 @@ Placing Items</h3>
497497
grid-row: auto; grid-column: auto;
498498
grid-row: 2; grid-column: 4;
499499
grid-row: 1 / -1; grid-column: 3;
500-
grid-row: header-start / footer-end; grid-column: sidebar-start / footer-end;
500+
grid-row: header-start / footer-end; grid-column: sidebar-start / sidebar-end;
501501
</pre>
502502

503503
They can further be decomposed into the 'grid-row-start'/'grid-row-end'/'grid-column-start'/'grid-column-end' longhands, e.g.

0 commit comments

Comments
 (0)