Reputation: 1480
Every select form that I have on my site cuts off in Firefox. Tested in Firefox 55.0.3 for Mac (64 bit) and Windows (32 bit) with the same results.
Using Bootstrap 4 beta
Here is my code:
<div class="form-group">
<label for="genre">Genre</label>
<select name="genre" id="genre" class="form-control">
@foreach ($genres as $genre)
<option value="{{ $genre->id}}" {{ $selected }}>{{ $genre->name }}</option>
@endforeach
</select>
</div>
I've been searching the web for solutions but didn't see anybody addressing this specific problem.
Upvotes: 1
Views: 784
Reputation: 2373
Please provide your CSS that you are applying to this select and .form-control
Trying adding this to your CSS
.form-control {
height: auto;
min-height: 36px;
}
Upvotes: 3