We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 389f75f commit 43ee83bCopy full SHA for 43ee83b
1 file changed
css-grid/Overview.bs
@@ -1472,7 +1472,7 @@ Explicit Grid Shorthand: the 'grid-template' property</h3>
1472
<pre>
1473
grid-template: auto 1fr auto /
1474
(header-top) "a a a" (header-bottom)
1475
- (main-top) "b b b" 1fr (main-bottom);
+ (main-top) "b b b" 1fr (main-bottom);
1476
</pre>
1477
1478
is equivalent to
@@ -1481,7 +1481,7 @@ Explicit Grid Shorthand: the 'grid-template' property</h3>
1481
grid-template-columns: auto 1fr auto;
1482
grid-template-rows: (header-top) auto (header-bottom main-top) 1fr (main-bottom);
1483
grid-template-areas: "a a a"
1484
- "b b b";
+ "b b b";
1485
1486
</div>
1487
</dl>
0 commit comments