Skip to content
Learn Netverks

Lesson

Step 14/36 39% through track

responsive-columns

Responsive columns

Last reviewed Jun 1, 2026 Content v20260601
Track mode
iframe_html
Means
HTML preview sandbox
Reading
~1 min
Level
intermediate

This lesson

This lesson teaches Responsive columns—the ideas, syntax, and habits you need before moving on in Bulma.

Traffic is predominantly mobile—layouts that only work on desktop fail users and metrics.

You will apply Responsive columns in contexts like: Smaller marketing sites, internal dashboards, and projects that need quick responsive layout with minimal JS.

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 Responsive columns in your own words.

Bulma columns are mobile-first: unprefixed columns stack on small screens; breakpoint suffixes (-mobile, -tablet, -desktop, -widescreen, -fullhd) apply from that tier upward—mirroring CSS media queries and Bootstrap’s prefixed grid.

Responsive sizing

  • is-half-mobile — 50% width from mobile breakpoint up (until overridden)
  • is-one-third-tablet — third width from tablet up
  • is-8-desktop — eight-twelfths from desktop up

Responsive columns container

Add is-mobile on columns to keep columns horizontal even on narrow viewports—useful for toolbars, not long-form content. is-desktop only activates the flex row at desktop width.

Important interview questions and answers

  1. Q: What does is-half-tablet mean?
    A: From the tablet min-width upward, the column occupies half the row; below tablet it stacks full width unless another size modifier applies.
  2. Q: Mobile-first in Bulma?
    A: Base column stacks; wider layouts add breakpoint-suffixed modifiers rather than max-width “desktop-first” rules.

Self-check

  1. Write modifiers for a column full on mobile, half on tablet, one-third on desktop.
  2. When would columns is-mobile be appropriate?

Interview prep

How do you change column width at breakpoints?

Size modifiers like is-half, is-one-third, and responsive helpers such as is-8-desktop (Bulma 1 naming).

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 class bit you?
  • Mobile default layout?

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