0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<p>In the previous assignment we already mentioned that negative values for coordinates can be used in rows. And, as you might have already guessed, in order to do this we need the grid-row-start/grid-row-end properties.</p>
1
<p>In the previous assignment we already mentioned that negative values for coordinates can be used in rows. And, as you might have already guessed, in order to do this we need the grid-row-start/grid-row-end properties.</p>
2
<p>We already used the value -1. Let’s try something new, such as, for example, the value -2 that will designate<em>the second row line counted from the end of the grid</em>:</p>
2
<p>We already used the value -1. Let’s try something new, such as, for example, the value -2 that will designate<em>the second row line counted from the end of the grid</em>:</p>
3
<p>In the code, it will be written as follows:</p>
3
<p>In the code, it will be written as follows:</p>
4
.element { grid-row-start: 1; grid-row-end: -2; }<p>Shall we practice what we learned a little?</p>
4
.element { grid-row-start: 1; grid-row-end: -2; }<p>Shall we practice what we learned a little?</p>