CSS Grid Mastery

Design two dimensional layouts.

1. Which CSS property is used to define a grid container?
2. Which of the following properties define the size of grid tracks (rows/columns)?
3. The 'gap' property in CSS Grid adds space between grid items and the outer edges of the grid container.
4. What unit in CSS Grid represents a fraction of the available space in the grid container?
5. What is the default alignment of grid items along the inline (row) axis?
6. Which properties can explicitly position a grid item within the grid?
7. A grid item can span multiple rows and columns using the 'grid-column' and 'grid-row' properties.
8. What property defines the number and size of grid rows in an explicit grid?
9. What does the 'grid-template-areas' property enable?
10. Which values are valid for the 'justify-items' property (aligns items along the inline axis)?
11. The 'grid-auto-flow' property controls how auto-placed items are inserted into the grid.
12. What is the shorthand property for 'grid-column-start' and 'grid-column-end'?
13. Which function creates grid tracks with a minimum and maximum size?
14. Which properties apply to grid containers (not grid items)?
15. CSS Grid is a one-dimensional layout system, focusing only on rows or columns at a time.
16. What property aligns all grid items along the block (column) axis by default?
17. What does 'repeat(3, 1fr)' do in 'grid-template-columns'?
18. Which properties align the entire grid within the grid container?
19. Implicit grid tracks are automatically created when items are placed outside the explicit grid.
20. What property is used to name grid lines for easier reference?
Answered 0 of 0 — 0 correct