This is about Bulma.
Not able to right align the button field has-addons div.
I'm using Bulma 0.7.1
My browser is Chrome.
<div class="columns">
<div class="column has-text-right">
<div class="field has-addons">
<p class="control">
<a class="button">All</a>
</p>
<p class="control">
<a class="button">Reserved</a>
</p>
<p class="control">
<a class="button">Rented</a>
</p>
<p class="control">
<a class="button is-selected is-primary">Overdue</a>
</p>
</div>
</div>
</div>
The buttons addons should be moved towards the end of right.
The buttons addons is still left aligned.
The “has-text-right” works for textual content, not flexbox items, which the “control” elements are.
@jgthms How do I get my control to be right aligned, then? :)
You can use buttons is-right:
<nav class="buttons is-right">
<a class="button">One</a>
<a class="button">Two</a>
<a class="button">Three</a>
</nav>
Most helpful comment
You can use
buttons is-right: