if it's a bug, is it a browser bug? YES
[X] This is about the Bulma CSS framework
Horizontal form breaks if a label is long
<div class="control is-horizontal">
<div class="control-label">
<label class="label">
T铆tulo
</label>
</div>
<div class="control is-expanded">
<input class="input" type="text" placeholder="">
</div>
</div>
<div class="control is-horizontal">
<div class="control-label">
<label class="label">
slug
</label>
</div>
<div class="control is-expanded">
<input class="input" type="text" placeholder="">
</div>
</div>
<div class="control is-horizontal">
<div class="control-label">
<label class="label">
Descripci贸n
</label>
</div>
<div class="control">
<textarea class="textarea" placeholder=""></textarea>
</div>
</div>
The code is wrapped in a card
<div class="card is-fullwidth">
<div class="card-content">
<div class="content">
<div class="columns">
<div class="column">
<!-- the form goes here -->
Everything should be aligned

Workaround for the time being I found:
Wrap the control-label element in
<div class="column is-paddingless is-3">
<div class="control-label">
<label for="email" class="label">E-Mail</label>
</div>
</div>
where is-3 change this to your desired width.
The new field element fixes this.
@jgthms so how to fix this? Still have this problem in 0.6.1 when the form is inside a column.
Most helpful comment
@jgthms so how to fix this? Still have this problem in 0.6.1 when the form is inside a column.