0
0
Bootsrapmarkup~5 mins

Row and column structure in Bootsrap - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the purpose of a .row in Bootstrap?
A .row groups columns horizontally and ensures they align properly with gutters (space between columns). It helps create a horizontal layout inside a container.
Click to reveal answer
beginner
How do Bootstrap columns behave inside a .row?
Columns inside a .row share the available horizontal space. They stack side-by-side on larger screens and can stack vertically on smaller screens depending on the column classes used.
Click to reveal answer
beginner
What does the class .col-6 mean in Bootstrap?
It means the column takes up 6 out of 12 parts of the row's width, so half the row width. Bootstrap grid is based on 12 equal parts.
Click to reveal answer
intermediate
Why should you always place columns inside a .row?
Because .row applies negative margins that offset the padding of the container, so columns align correctly without extra space on sides.
Click to reveal answer
beginner
How does Bootstrap's grid system help with responsive design?
It uses rows and columns with classes that change width based on screen size, so content adjusts layout automatically for phones, tablets, and desktops.
Click to reveal answer
In Bootstrap, what is the total number of columns in a single row?
A12
B6
C24
D4
Which class should you use to create a horizontal group of columns in Bootstrap?
A.container
B.row
C.col
D.grid
What happens if you put columns outside a .row in Bootstrap?
AColumns may have extra space on sides and misalign
BColumns will align perfectly
CColumns become invisible
DColumns stack vertically always
What does .col-12 mean in Bootstrap?
AColumn is hidden
BColumn takes half width of the row
CColumn takes one quarter width
DColumn takes full width of the row
How does Bootstrap's grid system help on small screens?
AIt hides all columns
BIt disables the grid
CIt stacks columns vertically for better readability
DIt makes columns wider than the screen
Explain how Bootstrap's row and column classes work together to create a responsive layout.
Think about how a row holds columns and how columns adjust width.
You got /4 concepts.
    Describe why it is important to use the .row class when working with columns in Bootstrap.
    Consider spacing and alignment inside containers.
    You got /4 concepts.