1. What is a grid made of?
A. Lines, cells, rows, columns
B. Lines, cells, columns
C. Lines, cells, rows
2. What property should I use to customize the rows generated automatically?
A. grid-generated-rows
B. grid-auto-rows
C. grid-automatically-rows
3. What property decides if rows or columns get generated?
A. grid-auto-flow
B. grid-flow
C. grid-generated-flow
4. What does the fr measurement unit do?
A. It takes as much space as possible
B. It makes the grid contract
C. It expands the lines of the cell
5. What is the syntax for the repeat() function?
A. repeat(size, times)
B. repeat(times, size)
C. repeat(size)(times)
6. How can I make a column respect a maximum or a minimum size?
A. Using maxSize() function
B. Using minmax() function
C. Using min-max property
7. How can I align the content INSIDE of the grid cells?
A. Using place-items
B. Using place-content
8. How can I align the grid cells?
A. Using place-items
B. Using place-content
9. How can I give space between the cells?
A. margin
B. padding
C. grid-gap
1:A, 2:B, 3:A, 4:A, 5:B, 6:B, 7:A, 8:B, 9:C