0
0
Bootsrapmarkup~5 mins

Responsive column classes in Bootsrap - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What are responsive column classes in Bootstrap?
Responsive column classes in Bootstrap are special class names that let you control how many columns an element takes up on different screen sizes, making your layout adjust smoothly on phones, tablets, and desktops.
Click to reveal answer
beginner
What does the class col-md-6 mean in Bootstrap?
The class col-md-6 means the element will take up 6 out of 12 columns (half the width) on medium-sized screens and larger. On smaller screens, it will stack full width by default.
Click to reveal answer
intermediate
Name the Bootstrap breakpoint prefixes for responsive columns from smallest to largest.
The prefixes are: col- (extra small), col-sm- (small), col-md- (medium), col-lg- (large), col-xl- (extra large), and col-xxl- (extra extra large).
Click to reveal answer
intermediate
How does Bootstrap handle column widths if you only use col without a number?
Using col without a number makes the column automatically share equal width with other col siblings in the same row, adjusting fluidly to the container size.
Click to reveal answer
beginner
Why is it important to use responsive column classes in web design?
Responsive column classes help your website look good and work well on all devices by adjusting the layout automatically, improving user experience and accessibility.
Click to reveal answer
What does col-sm-4 do in Bootstrap?
AMakes the column full width on all screens
BMakes the column 4 units wide on extra small screens only
CMakes the column 4 units wide on small screens and larger
DHides the column on small screens
Which class makes a column take full width on extra small screens but half width on medium screens?
Acol-12 col-md-6
Bcol-md-12 col-6
Ccol-sm-6 col-lg-12
Dcol-6 col-sm-12
If you want three equal columns on large screens but stacked on smaller, which classes would you use?
Acol-md-4
Bcol-lg-4
Ccol-sm-4
Dcol-4
What is the total number of columns in Bootstrap's grid system?
A12
B6
C24
D10
Which class would you use to make a column automatically share equal width with siblings?
Acol-auto
Bcol-6
Ccol-12
Dcol
Explain how Bootstrap's responsive column classes help create layouts that work on different screen sizes.
Think about how columns change from full width on phones to side-by-side on desktops.
You got /4 concepts.
    Describe the difference between col-, col-sm-, and col-md- classes in Bootstrap.
    Remember the smallest to medium screen sizes and how columns behave.
    You got /3 concepts.