VOOZH about

URL: https://www.geeksforgeeks.org/css/bulma-mobile-columns/

⇱ Bulma Mobile columns - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Bulma Mobile columns

Last Updated : 23 Jul, 2025

Bulma is a free and open-source CSS framework that can be used as an alternative to Bootstrap. It comes with pre-built components like buttons and icons. In this article, we will be seeing how to use Bulma columns on mobile.

By default, the columns in Bulma are activated on tablets and upward screen sizes. In mobile devices, columns are stacked on top of each other, but if you want to enable columns on mobiles, the is-mobile CSS class can be used on the columns container. If you want to activate columns only on desktops and upwards, the is-desktop CSS class can be used on the columns container.

Bulma Columns CSS Classes:

  • is-mobile: This class is used on the columns container when you want to disable the stacking of columns on mobile devices.
  • is-desktop: This class is used on the columns container when you want to enable columns only on desktops and upwards.

Syntax:

<div class="columns Columns-CSS-Classes">
 ...
</div>

Example: The below example shows the use of Columns CSS classes in Bulma.

Output:

👁 Bulma Mobile columns
Bulma Mobile columns

Reference: https://bulma.io/documentation/columns/responsiveness/#mobile-columns

Comment
Article Tags: