How to center a section with bulma

user41758 picture user41758 · Nov 10, 2018 · Viewed 11.9k times · Source

I am using bulma framework , and all the content is to the left, how would I center the content on the page? For example this image is to the left.

Answer

ksav picture ksav · Nov 10, 2018

Why not have a look at the Bulma docs for Centering columns

<link href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.css" rel="stylesheet" />
<section class="section">
  <div class="container">
    <div class="columns is-centered">
      <div class="column is-half">
        <figure>
          <img src="https://placeimg.com/640/480/any" alt="Melton Hill Lake">
        </figure>
      </div>
    </div>
  </div>
</section>