In exercise 2. I had to use up to grid-column: 5; to get the same-looking result as you did. Is this correct? You have only defined 4 grid-template-columns. So, it’s 4 and I set it to span 5 columns, this doesn’t seem right to me.
I have two solutions for exercise 3, so check them both if you have time.
Thank you for an amazing course, and the fact you dedicate your time to check our solutions!!!
Task 2: Correct The second value in grid-column isn’t about how many columns it spans, but the line number where it ends. For four columns you have five lines (one in front of each column and one after the last column). In Firefox DevTools you can highlight the grid to see these line numbers.
Task 3: Both solutions are correct In your second solution you can even remove the selectors for “Two” and “Three”. The elements will be automatically placed.
Task 4: Almost correct When you’re making the window smaller you will see that the tag lists aren’t centered like in the reference image. You need to add one more property to make it work. Can you find out which?