Recall & Review
beginner
What does
col-6 mean in Bootstrap grid?It means the column will take up 6 out of 12 parts of the row width, so half the row.
Click to reveal answer
beginner
How many total columns does Bootstrap's grid system have?
Bootstrap's grid system has 12 columns in total.
Click to reveal answer
beginner
What happens if you add three
col-4 columns in one row?They will each take 4 parts, so together they fill the entire 12-column row equally.
Click to reveal answer
intermediate
Can you use
col-1 to col-12 classes together in one row?Yes, you can mix different column sizes as long as their total does not exceed 12.
Click to reveal answer
beginner
What is the visual effect of using
col-12 on a column?The column will stretch across the entire row width, taking all 12 parts.
Click to reveal answer
In Bootstrap, what does
col-3 represent?✗ Incorrect
col-3 means the column uses 3 parts out of 12 total parts in the row.
How many
col-4 columns fit exactly in one Bootstrap row?✗ Incorrect
Three col-4 columns each take 4 parts, totaling 12 parts (4+4+4=12).
What happens if column sizes in a row add up to more than 12?
✗ Incorrect
Bootstrap wraps extra columns to a new line if total exceeds 12.
Which class makes a column take the full width of the row?
✗ Incorrect
col-12 means the column uses all 12 parts, filling the row.
Can you mix
col-2 and col-10 in the same row?✗ Incorrect
You can mix column sizes as long as their total does not exceed 12.
Explain how Bootstrap's column sizing works using
col-1 through col-12 classes.Think of dividing a pizza into 12 slices.
You got /4 concepts.
Describe what happens visually when you use three
col-4 columns in one Bootstrap row.Imagine three equal boxes side by side filling a shelf.
You got /4 concepts.