Skip to content

Commit 43ee83b

Browse files
committed
[css-grid] Fix example alignment.
1 parent 389f75f commit 43ee83b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

css-grid/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,7 @@ Explicit Grid Shorthand: the 'grid-template' property</h3>
14721472
<pre>
14731473
grid-template: auto 1fr auto /
14741474
(header-top) "a a a" (header-bottom)
1475-
(main-top) "b b b" 1fr (main-bottom);
1475+
(main-top) "b b b" 1fr (main-bottom);
14761476
</pre>
14771477

14781478
is equivalent to
@@ -1481,7 +1481,7 @@ Explicit Grid Shorthand: the 'grid-template' property</h3>
14811481
grid-template-columns: auto 1fr auto;
14821482
grid-template-rows: (header-top) auto (header-bottom main-top) 1fr (main-bottom);
14831483
grid-template-areas: "a a a"
1484-
"b b b";
1484+
"b b b";
14851485
</pre>
14861486
</div>
14871487
</dl>

0 commit comments

Comments
 (0)