What are grid lines in CSS Grid?
A). <div>Horizontal and vertical lines that separate grid items.
B). <div>Elements inside a grid container.
C). <div>Rows and columns of a grid.
D). <div>Spaces between grid items.
What is the purpose of using named grid areas in CSS Grid?
A). <div>To specify the size of grid areas.
B). <div>To create custom grid lines.
C). <div>To define the starting and ending grid lines for grid items.
D). <div>To simplify layout creation and organization within the grid layout.
How can you align grid items along the cross axis within the grid container?
A). <div>Using the align-items property.
B). <div>Using the justify-content property.
C). <div>Using the grid-template-areas property.
D). <div>Using the align-content property.
How do you align grid items along the block axis within their grid area?
A). <div>Using the align-items property.
B). <div>Using the justify-content property.
C). <div>Using the grid-template-areas property.
D). <div>Using the align-content property.
How do you create named grid areas in CSS Grid?
A). <div>By using the grid-area property and specifying a name for the area.
B). <div>By using the align-items property.
C). <div>By using the justify-content property.
D). <div>By using the grid-column/grid-row properties.
How do you define the structure of columns and rows in CSS Grid?
A). <div>Using the grid-area property.
B). <div>Using the justify-content property.
C). <div>Using the grid-template-columns/grid-template-rows properties.
D). <div>Using the align-items property.
What does the justify-content property control in CSS Grid?
A). <div>The alignment of grid items along the inline axis.
B). <div>The alignment of grid items along the block axis.
C). <div>The alignment of grid items along the cross axis within the grid container.
D). <div>The spacing between grid items and grid tracks.
What does the align-content property control in CSS Grid?
A). <div>The alignment of grid items along the inline axis.
B). <div>The alignment of grid items along the block axis.
C). <div>The alignment of grid items along the cross axis within the grid container.
D). <div>The spacing between grid items and grid tracks.
How can you distribute grid items evenly along the inline axis within the grid container?
A). <div>Using the align-items: center;
B). <div>Using the justify-items: center;
C). <div>Using the justify-content: center;
D). <div>Using the align-content: center;
Which property is used to define a grid container in CSS Grid?
A). <div>grid-column
B). <div>display
C). <div>grid-gap
D). <div>justify-items