Skip to content

Commit 798a035

Browse files
committed
[css-grid-1][css-grid-2] Fix example #11848
1 parent 20676b7 commit 798a035

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

css-grid-1/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -544,14 +544,14 @@ Sizing the Grid</h3>
544544

545545
<div class="example">
546546
The following example justifies all columns
547-
by distributing any extra space among them,
547+
by distributing any extra space between them,
548548
and centers the grid in the <a>grid container</a>
549549
when it is smaller than 100vh.
550550

551551
<pre>
552552
main {
553553
display: grid;
554-
grid: auto-flow 1fr / repeat(auto-fill, 5em);
554+
grid: auto-flow auto / repeat(auto-fill, 5em);
555555
min-height: 100vh;
556556
justify-content: space-between;
557557
align-content: safe center;

css-grid-2/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -544,14 +544,14 @@ Sizing the Grid</h3>
544544

545545
<div class="example">
546546
The following example justifies all columns
547-
by distributing any extra space among them,
547+
by distributing any extra space between them,
548548
and centers the grid in the <a>grid container</a>
549549
when it is smaller than 100vh.
550550

551551
<pre>
552552
main {
553553
display: grid;
554-
grid: auto-flow 1fr / repeat(auto-fill, 5em);
554+
grid: auto-flow auto / repeat(auto-fill, 5em);
555555
min-height: 100vh;
556556
justify-content: space-between;
557557
align-content: safe center;

0 commit comments

Comments
 (0)