how to center image in a div bulma code example
Example 1: how to center an image bulma
<figure class="image is-inline-block" >
Example 2: bulma align image center in column
// to center an image horizontally with bulma:
// add has-text-centered to the parent
// add is-inline-block to the figure tag
<div class="has-text-centered">
<figure class="image is-64x64 is-inline-block">
<img class="is-rounded" src="https://unsplash.it/64"/>
</figure>
</div>