Is there a way to horizontally centered an image inside a card?
I have the following
<div class='column is-one-quarter has-text-centered'>
<div class='card equal-height'>
<div class='card-content'>
<figure class='image is-64x64'><img src='...'></figure>
</div>
</div>
</div>
and I cannot center the image. I have tried to add is-centered
both to the figure and to the parent div but nothing changes.
Thanks.
is-flex is-horizontal-center
to thefigure
tag otherwise also the other tags would be horizontally aligned with the image. – Locoism