DEV Community

Per for Scrimba

Posted on • Updated on

Learn Bulma CSS in 5 minutes

An introductory tutorial to the popular CSS framework.

Bulma is a simple, elegant, and modern CSS framework that a lot of developers prefer over Bootstrap. Personally, I think Bulma has a better design by default, and it also feels more light-weight.

In this tutorial, I’ll give you a super quick introduction to the library.

We've also created a free Bulma course on Scrimba. Check it out here.


Imgur

The setup

Setting up Bulma is super easy, and you can do it in several different ways, whether you prefer NPM, downloading it directly from the docs, or using a CDN. We’re just going to link to a CDN from our HTML file, like this:

This will give us access to the Bulma classes. And that’s actually all Bulma is: a collection of classes.

Modifiers

The first thing you should learn about Bulma is the modifier classes. These allow you to set alternative styles to almost all of the Bulma elements. They all start with is-* or has-*, and then youreplace the * with the style you want.

To understand this concept properly, let’s start off by looking at buttons.

Buttons

To turn a normal button into a Bulma button, we’ll simply give it the class of button.

<button class="button">Click here</button>
Enter fullscreen mode Exit fullscreen mode

Which results in the following style:

As you can see, it has a nice flat design by default. To change the styling, we’ll use Bulma modifiers. Let’s start off by making the button bigger, green, and with rounded corners:

<button class="button">Click here</button>
Enter fullscreen mode Exit fullscreen mode

This code results is a pleasant-looking button:

You can also use modifiers to control the state of buttons. Let’s for example add the class is-focused, which adds a border around it:

Finally, let’s also use one of the has-* modifiers. These typically control what’s inside the element. In our case, the text. Let’s add has-text-weight-bold.

Here’s the result:

I’d recommend that you play around with combinations of the various classes in order to understand how flexible this system is. The combinations are almost endless. Check out the buttons section in the docs for more info.

Columns

At the core of any CSS framework is how they solve columns, as that’s relevant
for almost every website you’ll ever build. Bulma is based on Flexbox, so it’s
really simple to create columns. Let’s create a row with four columns.

First we’re creating a container <div> with a class of columns, and then we give each of the children a class of column. It results in the following:


I’ve also added a border around the columns to make them more apparent.

Note that you can add as many columns as you want. Flexbox takes care of dividing the space up equally between them.

To give the columns colors, we can replace the text inside them with a <p> tag, and give it the notification class and an is-* modifier. Like this for example:

<p class="notification is-success">First column</p>
Enter fullscreen mode Exit fullscreen mode

Let’s do this using the is-info, is-success, is-warning and is-danger modifiers, which results in the following:

The notification class is actually meant for alerting users about something, as it allows you to fill the background with a color using the is-* modifiers. Here it works well for separating the columns.

We can also easily control the width of a column. Let’s add the is-half
modifier to the green column.

<p class="notification is-success">Second column</p>
Enter fullscreen mode Exit fullscreen mode

Which results in the second column now occupying half the width, while the three other take up a third of the remaining half each.

Here are the options you can use for controlling the width of columns:

  • is-three-quarters
  • is-two-thirds
  • is-half
  • is-one-third
  • is-one-quarter
  • is-four-fifths
  • is-three-fifths
  • is-two-fifths
  • is-one-fifth

Hero

Finally, let’s also learn how to create a hero in Bulma. We’ll use the semantic <section>, and give it a class of hero and is-info to give it some color. We also need to add a <div> child with the class hero-body.

<div class="hero-body"></div>
Enter fullscreen mode Exit fullscreen mode

In order to make this hero do something meaningful, we’re going to add a container element inside the body, and add a title and subtitle.

<div class="container">
  <h1 class="title">
    Primary title
  </h1>
  <h2 class="subtitle">
    Primary subtitle
  </h2>
</div> 
Enter fullscreen mode Exit fullscreen mode

Now it’s starting to look good! If we want it to be bigger, we can simply add is-medium on the <section> tag itself.

<section class="hero is-info is-medium">
  ...
</section>
Enter fullscreen mode Exit fullscreen mode

And that’s it!

You’ve now gotten a basic taste of how Bulma works. And the best part is, the rest of the library is as intuitive and easy as the concepts you’ve seen up until now. So if you understand this, you’ll understand the rest of it without trouble.

So be sure to check out our free Bulma course if you want to learn the framework properly.


Top comments (4)

Collapse
 
seanmclem profile image
Seanmclem

Your first example of using a modifier doesn't seem to be right. Where you make the button bigger, green, and with rounded corners. It still only has the one button class from the previous example

Collapse
 
tnathania profile image
Tinara Nathania

Really nice article! Btw, we have a generic content builder for Bulma and other frameworks (Bootstrap, Foundation, Material Design Lite, ..) as well. You can play with the builder here ( innovademo.com/contentbuilder/exam... ) It’s a jQuery plugin, so you can use it on your website. Let me know what you think :)

Collapse
 
pixeline profile image
Alexandre Plennevaux

it seems none of the images were included...

Collapse
 
blvkoblsk profile image
BLVKOBLSK

Absolutely love working with Bulma. Makes it even easier to inject your own custom classes, etc along side it too.