'Bulma Levels vs Containers

The documentation for Levels puts the level class on a nav element like this: <nav class="level">

Are Bulma Levels intended for navigation bars? If just centering a single image, is it best practice to use a regular Bulma container?

Both ways technically work:

      <div class="container is-flex is-justify-content-center">
        <figure class="image">
          <img src="images/bulma-logo-white.png" style="max-width: 256px;">
        </figure>
      </div>
      <nav class="level">
        <figure class="image level-item ">
          <img src="images/bulma-logo-white.png" style="max-width: 256px;">
        </figure>
      </nav>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source