0
0
Bootsrapmarkup~5 mins

12-column grid model in Bootsrap - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the 12-column grid model in Bootstrap?
It is a layout system that divides the page width into 12 equal parts called columns. You can combine these columns to create different widths for content blocks.
Click to reveal answer
beginner
How do you create a row in Bootstrap's 12-column grid?
Use the class="row" on a container element. This groups columns horizontally and ensures proper spacing.
Click to reveal answer
beginner
How do you specify the width of a column in Bootstrap's grid?
Add a class like <code>col-*</code> where * is a number from 1 to 12. For example, <code>col-6</code> means the column takes 6 out of 12 parts, or half the width.
Click to reveal answer
intermediate
Why is the 12-column grid model useful for responsive design?
Because 12 can be divided evenly many ways (2, 3, 4, 6), it lets you easily create layouts that adjust well on different screen sizes.
Click to reveal answer
intermediate
What happens if the total column widths in a row exceed 12?
The columns will wrap to the next line, which can break your layout. Always keep the total column count per row at 12 or less.
Click to reveal answer
In Bootstrap's 12-column grid, what class would you use for a column that takes one quarter of the row's width?
Acol-3
Bcol-4
Ccol-6
Dcol-9
What is the purpose of the row class in Bootstrap's grid?
ATo create horizontal groups of columns
BTo add padding inside columns
CTo set font size
DTo add background color
If you want two equal columns side by side in Bootstrap's grid, which classes would you use?
Acol-4 and col-8
Bcol-6 and col-6
Ccol-3 and col-9
Dcol-12 and col-12
What happens if you add three columns with classes col-5, col-5, and col-5 inside one row?
AThe row breaks and disappears
BAll columns fit in one line
CThe third column wraps to the next line
DColumns overlap
Why is the number 12 chosen for the grid columns in Bootstrap?
ABecause 12 is the default font size
BBecause 12 is the number of months in a year
CBecause 12 is a prime number
DBecause 12 divides evenly into many parts
Explain how the 12-column grid model helps create flexible page layouts in Bootstrap.
Think about how dividing a page into parts helps arrange content.
You got /4 concepts.
    Describe what happens if the total column widths in a Bootstrap row exceed 12 and how to avoid layout issues.
    Consider how space is limited in one row.
    You got /4 concepts.