I am currently working on making a horizontal form with a couple of selects, but I can't get the button to be in line with the dropdown instead of the text.
This is how my code looks like:
<form method="get" action="/some-action" >
<div class="container-fluid">
<div class="form-group row">
<div class="col">
<label for="something">Something</label>
<select class="form-control" id="something" name="something">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</div>
<div class="col">
<input type="submit" class="btn btn-primary"></button>
</div>
</div>
</div>
</form>
I already tried using an empty "cell" to force the grid control to move the button down, the problem is that it went too down, I haven't found a way to get it perfectly aligned.