Recall & Review
beginner
What does column stacking mean in Bootstrap on mobile devices?
Column stacking means that columns which are side-by-side on larger screens will stack vertically on smaller screens like mobiles, making content easier to read.
Click to reveal answer
beginner
How do you make columns stack on mobile but stay side-by-side on larger screens in Bootstrap?
Use Bootstrap grid classes with breakpoints, like
col-md-4. Columns stack by default on extra small screens and become side-by-side starting at medium screens.Click to reveal answer
beginner
What is the default behavior of Bootstrap columns without breakpoint prefixes?
Without breakpoint prefixes (e.g.,
col-4), columns are displayed side-by-side on all screen sizes, including mobile.Click to reveal answer
beginner
Why is column stacking important for mobile users?
Stacking columns vertically on mobile improves readability and usability by fitting content to narrow screens without horizontal scrolling.
Click to reveal answer
beginner
Which Bootstrap class would you use to create three equal columns that stack on mobile but sit side-by-side on tablets and larger?Use
col-md-4 on each column. This stacks columns on screens smaller than medium (mobile) and shows three columns side-by-side on medium and larger screens.Click to reveal answer
In Bootstrap, how do columns behave on extra small screens by default?
✗ Incorrect
By default, Bootstrap columns stack vertically on extra small screens (mobile) to fit narrow widths.
Which class makes columns side-by-side starting at medium screen size?
✗ Incorrect
The
col-md-4 class applies side-by-side columns starting at medium screen size and stacks below that.What happens if you only use
col-4 without breakpoints?✗ Incorrect
col-4 applies to all screen sizes, so columns stay side-by-side everywhere.Why should columns stack on mobile devices?
✗ Incorrect
Stacking columns vertically on mobile improves readability and prevents horizontal scrolling.
Which Bootstrap breakpoint is used for tablets?
✗ Incorrect
The
md breakpoint in Bootstrap targets tablets and medium-sized devices.Explain how Bootstrap's grid system helps columns stack on mobile devices.
Think about how columns behave without and with breakpoint prefixes.
You got /3 concepts.
Describe why column stacking is important for mobile user experience.
Consider how people use phones compared to desktops.
You got /4 concepts.