Hello, I don’t understand my fault on a grid quiz. Especially because there are two questions that contradict. Can someone explain please ?
The quiz :
Imagine we have a grid with the following CSS properties, with 4 boxes inside of it. If we added a fifth box to the HTML, what height would it have?
.grid { grid-template-rows: repeat(2, 50px);
grid-template-columns: repeat(2, 100px);
grid-auto-rows: 60px;
grid-auto-columns: 70px;}
Your correct answer
60px
Imagine we have a grid with the following CSS properties, with 4 boxes inside of it. If we added a fifth box to the HTML, what width would it have?
.grid { grid-template-rows: repeat(2, 50px);
grid-template-columns: repeat(2, 100px);
grid-auto-rows: 60px;
grid-auto-columns: 70px;}
Your answer
60px
Correct answer
100px
Why is it not 70px for this one ?