Skip to content
Learn Netverks

Lesson

Step 18/36 50% through track

breakpoints-grid

Breakpoints and the grid

Last reviewed May 28, 2026 Content v20260528
Track mode
iframe_html
Means
HTML preview sandbox
Reading
~1 min
Level
intermediate

This lesson

This lesson teaches Breakpoints and the grid—the ideas, syntax, and habits you need before moving on in Bootstrap.

Most modern layouts are built with flexbox and grid; skipping this lesson leaves responsive UI fragile.

You will apply Breakpoints and the grid in contexts like: Page layouts, dashboards, marketing sections, and component libraries.

Read the lesson, edit HTML/CSS in the playground, press Run to preview, then answer the lesson MCQs.

When the previous lesson's MCQs feel easy and you can explain Breakpoints and the grid in your own words.

Bootstrap breakpoints are min-width tiers: sm 576px, md 768px, lg 992px, xl 1200px, xxl 1400px. Unprefixed column classes apply to all sizes; prefixed classes apply from that breakpoint upward.

Mobile-first grid

Design the narrow layout first (col-12), then add col-md-6 or col-lg-4 when wider viewports need more columns—the same story as CSS media queries and Tailwind’s unprefixed + md: pattern.

Important interview questions and answers

  1. Q: What does col-lg-3 mean?
    A: From lg (992px) up, the column spans 3/12 width; below lg, smaller breakpoint or base col-* rules apply.
  2. Q: Can you skip sm and use md only?
    A: Yes—prefixes are independent tiers; mobile-first means base styles cover xs until the first matching prefix kicks in.

Self-check

  1. At what width does the lg breakpoint start?
  2. Why stack columns on mobile before adding md splits?

Interview prep

What does col-lg-6 mean?

At the lg min-width and up, the column spans half the row (6 of 12).

Interview tip Lesson completion confidence

Can you explain this lesson in 30 seconds without reading notes?

Not saved yet.

Playground

Runs in your browser in a sandboxed frame. Backend runners appear when this track’s profile allows them.

Check yourself

Multiple choice — immediate feedback.

Discussion

Past discussion is visible to everyone. Only logged-in users can post comments and replies.

Starter discussion topics

  • Which breakpoint bit you most?
  • What is your mobile-first default?

Sign up or log in to post comments and sync lesson progress across devices.

No discussion yet. Be the first to ask a question.

Jump