Recall & Review
beginner
What does nesting rows and columns mean in Bootstrap?
It means placing a new
.row inside a .col to create more complex layouts within a column.Click to reveal answer
beginner
Why do we need to nest rows inside columns in Bootstrap?
Because Bootstrap’s grid requires rows to contain columns. Nesting lets you create smaller grids inside a column for detailed layout control.
Click to reveal answer
beginner
Which Bootstrap class must you add to a container inside a column to start a nested grid?You add the <code>.row</code> class inside the column to start a nested grid.Click to reveal answer
intermediate
What happens if you put columns directly inside columns without a row in Bootstrap?
The layout breaks because columns must be inside rows. Bootstrap’s grid system requires rows to wrap columns.
Click to reveal answer
intermediate
How does nesting rows and columns help with responsive design?
It allows you to create smaller grids inside columns that can adjust independently on different screen sizes, making layouts flexible.
Click to reveal answer
In Bootstrap, where should you place a nested
.row?✗ Incorrect
Nested rows must be placed inside columns to maintain the grid structure.
What class do you use to create columns inside a nested row?
✗ Incorrect
Columns inside any row use the
.col class or its variants.What is the main reason for nesting rows and columns in Bootstrap?
✗ Incorrect
Nesting allows building complex layouts by subdividing columns into smaller grids.
What happens if you put
.col directly inside another .col without a .row?✗ Incorrect
Bootstrap requires columns to be inside rows; skipping rows breaks the grid.
Which Bootstrap class is used to start a new grid inside a column?
✗ Incorrect
A nested grid always starts with a
.row inside a column.Explain how to properly nest rows and columns in Bootstrap and why it is important.
Think about how Bootstrap’s grid system is structured with rows and columns.
You got /4 concepts.
Describe a real-life example where nesting rows and columns in Bootstrap would be useful.
Imagine a webpage with a product card that has image, description, and buttons arranged differently.
You got /4 concepts.