Skip to content

Commit

Permalink
[css-grid-1] Fix some typos. #3410
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasai committed Dec 10, 2018
1 parent cb0e160 commit 09f6107
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions css-grid-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ Placing Items</h3>
grid-area: auto; /* Auto-place into next empty area */
grid-area: 2 / 4; /* Place into row 2, column 4 */
grid-area: 1 / 3 / -1; /* Place into column 3, span all rows */
grid-area: header-start / sidebar-start / footer-end / sidebar-start;
grid-area: header-start / sidebar-start / footer-end / sidebar-end;
/* Place using named lines */
</pre>

Expand All @@ -497,7 +497,7 @@ Placing Items</h3>
grid-row: auto; grid-column: auto;
grid-row: 2; grid-column: 4;
grid-row: 1 / -1; grid-column: 3;
grid-row: header-start / footer-end; grid-column: sidebar-start / footer-end;
grid-row: header-start / footer-end; grid-column: sidebar-start / sidebar-end;
</pre>

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

0 comments on commit 09f6107

Please sign in to comment.