I recently started using Bulma and have been experimenting with creating a basic webpage using it.
I've encountered an annoying issue where the "button is-large" class seems to be making elements on my page display inline.
Below is a simple demonstration of the problem:
<div class="column" style="height: 200px">
<a class="button is-fullwidth" style="height: 100%">
<p> <img src="https://d30y9cdsu7xlg0.cloudfront.net/png/30611-200.png" alt=""> </p>
<p class="title">Print Release</p>
</a>
</div>
The elements in the code above are appearing inline instead of stacked vertically.
I would like the contents inside the "a tag" to stack on top of each other. However, adding the "button is-fullwidth" class forces the two elements to display inline. Removing this class resolves the issue, but I want to understand if there's a way to keep the button class while achieving the desired vertical layout.
You can view a full JSFiddle where I've tried different solutions without success.
Is this behavior expected with the "button ..." class in Bulma? Is there a way to maintain the button class and still have the elements appear on separate lines?