I am trying to position a select and input field with the same width next to each other.
<link href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" rel="stylesheet" />
<div class="field-body">
<div class="field is-fullwidth">
<input class="input" type="number" placeholder="Name">
</div>
<div class="field has-addons">
<div class="control is-expanded">
<div class="select is-fullwidth">
<select style="flex-basis: 0">
<option>Choose..</option>
<option>...</option>
</select>
</div>
</div>
</div>
</div>
last example on bulma form doc: