I'm using Bulma and I have some tabs with the is-fullwidth option, however, each tab takes a different width depending on the content. I would like all tabs to keep the same size (using ellipsis on text that is too long), preferable avoiding Javascript.
An example of my tabs would be
<div class="tabs is-fullwidth">
<ul>
<li>
<a>
First
</a>
</li>
<li>
<a>
A very long thing with a lot of text
</a>
</li>
<li>
<a>
Third
</a>
</li>
</ul>
</div>
Edit
The number of tabs may change (between 1 and 6) depending on the user config