Challenge - 5 Problems
Grid Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Why use a grid system in Bootstrap?
Which of the following best explains why a grid system is important in Bootstrap?
Attempts:
2 left
💡 Hint
Think about how websites look good on phones and computers.
✗ Incorrect
A grid system divides the page into columns and rows, making it easier to arrange content so it looks good on all devices.
📝 Syntax
intermediate2:00remaining
Bootstrap grid classes for layout
Which Bootstrap class combination creates a row with three equal columns on medium and larger screens?
Attempts:
2 left
💡 Hint
Remember Bootstrap grid columns add up to 12.
✗ Incorrect
Using col-md-4 three times inside a row divides the row into three equal parts on medium and larger screens.
❓ layout
advanced2:00remaining
Responsive behavior of Bootstrap grid
What happens to columns with class col-md-6 when viewed on a small screen (less than 768px wide)?
Attempts:
2 left
💡 Hint
Think about how Bootstrap handles smaller screens by default.
✗ Incorrect
The col-md-6 class applies only on medium (≥768px) and larger screens. On smaller screens, columns stack vertically by default.
❓ accessibility
advanced2:00remaining
Accessibility and grid systems
How does using a grid system like Bootstrap's help improve accessibility?
Attempts:
2 left
💡 Hint
Think about how screen readers read content on a page.
✗ Incorrect
A well-structured grid keeps content in a logical order, making it easier for screen readers and keyboard users to navigate.
🧠 Conceptual
expert3:00remaining
Why grids matter for responsive design
Which statement best describes the role of a grid system in responsive web design?
Attempts:
2 left
💡 Hint
Responsive design means the website changes to fit the device screen.
✗ Incorrect
Grid systems use columns and rows that can resize or stack to keep the layout neat on any screen size.