Skip to content

Commit 916a024

Browse files
committed
[css-grid] Fix tpoys and off-by-1s.
1 parent 1dff9d4 commit 916a024

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

css-grid/Overview.bs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2069,7 +2069,7 @@ Grid Definition Shorthand: the 'grid' property</h2>
20692069
Clamping Overlarge Grids</h2>
20702070

20712071
Since memory is not infinite,
2072-
UAs may clamp the the possible size of the <a>grid</a>
2072+
UAs may clamp the possible size of the <a>grid</a>
20732073
to within a UA-defined limit,
20742074
dropping all lines outside that limit.
20752075
If a grid item is placed outside this limit,
@@ -2079,7 +2079,7 @@ Clamping Overlarge Grids</h2>
20792079
* If the <a>grid area</a> would span outside the limited grid,
20802080
its span is clamped to the last line of the limited <a>grid</a>.
20812081
* If the <a>grid area</a> would be placed completely outside the limited grid
2082-
is span must be truncated to 1
2082+
its span must be truncated to 1
20832083
and the area repositioned into the last <a>grid track</a> on that side of the grid.
20842084

20852085
<div class='example'>
@@ -2097,8 +2097,8 @@ Clamping Overlarge Grids</h2>
20972097

20982098
<pre class="lang-css">
20992099
.grid-item {
2100-
grid-row: 500 / 1000;
2101-
grid-column: 999 / 1000;
2100+
grid-row: 500 / 1001;
2101+
grid-column: 1000 / 1001;
21022102
}
21032103
</pre>
21042104
</div>

0 commit comments

Comments
 (0)