Bulma: Columns disappear?

Created on 17 Apr 2018  路  2Comments  路  Source: jgthms/bulma

If I have three columns set to half-width on tablet, the last column is hidden. Is there any way to make it spill into a new row?

  <section class="section">
      <h1 class="title">Title</h1>
      <h2 class="subtitle">Subtitle</h2>

      <div class="columns">
        <div class="column is-half-tablet is-one-quarter-desktop">content</div>
        <div class="column is-half-tablet is-one-quarter-desktop">content</div>
        <div class="column is-half-tablet is-one-quarter-desktop">content</div>
      </div>
  </section>

Most helpful comment

Use can use

<div class="columns is-multiline">

All 2 comments

Use can use

<div class="columns is-multiline">

Glorious!

Was this page helpful?
0 / 5 - 0 ratings