FAQ: CSS Grid Essentials - Multiple Row Items

This community-built FAQ covers the “Multiple Row Items” exercise from the lesson “CSS Grid Essentials”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn CSS

FAQs on the exercise Multiple Row Items

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

grid-template: repeat(4, 1fr 2fr) / repeat(4, 3fr 2fr);
This above is the code used in the exercise for the parent element. the question demanded you apportion a child item to occupy the fifth and sixth rows. but from the code above the parent grid has only four rows.

1 Like

From this we can conclude that the grid has 8 rows…

  <div class="grid">
    <div class="box a">A</div>
    <div class="box b">B</div>
  </div>
.a {
  grid-row-start: 5;
  grid-row-end: 7;
}
.b {
  grid-row-start: 7;
  grid-row-end: 9;
}

I‎ just got it. I forgot that repeat(4, 1fr 2fr) means duplicate

2 Likes

Why do we use two separate classes

.box and .a 

instead of just

 .box a
1 Like

With no class denotation (the dot) the a is seen as an element type, meaning it would look like this in the HTML…

<div class="box">
    <a href="#">link text</a>

With the dot it is a combinator where both classes must match.

<div class"box a">

This helped. Thank you.

Does anyone understand what having negative grid-row-start/end does? The link didn’t really help me.

1 Like

From my understanding, negative integers basically start counting from the END of the grid. So grid-row-start: -1; would select the last grid line in the grid as the starting point. I suppose this might be useful if you don’t know exactly how many rows you have.

Can someone more knowledgeable correct me if I’m wrong.

4 Likes

Hi guys,
sorry but I have a question.

I have understood that the first value in repeat, defines the number of rows or columns in a grid. The next 2 values define the size of those rows or columns.
I did not read that the first value duplicates something.

When we write repeat(3, 100px) we mean 3 rows or columns of 100px, not 6…
Morover, if this code means duplicate → repeat(4, 1fr 2fr) ← which size should have row or columns?

I am confused

The spread is akin to four columns/rows, each containing two columns/rows, the first is half the size of the second.

 1fr    2fr
 ---- -------- ---- -------- ---- -------- ---- --------
|    |        |    |        |    |        |    |        |
3 Likes

I was confused by this too, reread activity 7, particularly the bottom bit.

1 Like

7.1. The Explicit Grid
Numeric indexes in the grid-placement properties count from the edges of the explicit grid. Positive indexes count from the start side (starting from 1 for the start-most explicit line), while negative indexes count from the end side (starting from -1 for the end-most explicit line).

and here…

8.3. Line-based Placement: the grid-row-start , grid-column-start , grid-row-end , and grid-column-end properties
If a negative integer is given, it instead counts in reverse, starting from the end edge of the explicit grid.

1 Like

Unlike the previous exercises in which we could see all the grids visually indicated by blue borders; why is that we cannot see other grids in this one and only the grid for A is shown?