Recall & Review
beginner
What does 'equal-width columns' mean in Bootstrap?
It means columns that automatically share the available space equally, no matter how many columns you have.
Click to reveal answer
beginner
How do you create equal-width columns in Bootstrap?
Use the class
col on each column inside a row. Bootstrap will make them all the same width automatically.Click to reveal answer
beginner
What happens if you add more columns with the <code>col</code> class inside a row?Bootstrap divides the row’s width equally among all columns, so each column gets the same width.
Click to reveal answer
intermediate
Can equal-width columns adjust on different screen sizes?
Yes! Bootstrap’s grid is responsive, so equal-width columns resize proportionally on smaller screens.
Click to reveal answer
beginner
Why is using equal-width columns helpful in web design?
It makes layouts simple and neat without needing to set exact widths. It also helps keep content balanced and easy to read.
Click to reveal answer
Which Bootstrap class creates equal-width columns inside a row?
✗ Incorrect
The
col class makes columns share space equally inside a row.If you have three
col columns in a row, how wide is each column?✗ Incorrect
Bootstrap divides the row width equally, so each of three columns gets one third.
What happens to equal-width columns on small screens in Bootstrap?
✗ Incorrect
Bootstrap’s grid is responsive; equal-width columns stay side-by-side but resize proportionally on small screens.
Which container holds columns in Bootstrap’s grid system?
✗ Incorrect
Columns with
col classes must be inside a row to work properly.Why might you choose equal-width columns over fixed-width columns?
✗ Incorrect
Equal-width columns adjust automatically, making layouts flexible and easier to maintain.
Explain how to create equal-width columns in Bootstrap and why it is useful.
Think about how Bootstrap shares space among columns.
You got /5 concepts.
Describe what happens to equal-width columns on different screen sizes in Bootstrap.
Consider how the layout changes on phones versus desktops.
You got /4 concepts.