Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE scrollbar bug

IE bug, how to remove scrollbar in this dropdown, I don't need this? In chrome works fine, no scrollbar.

My code:

<div class="form-group">
<label class=""> </label>
<select>
<option value=""></option>
<option value="Used">one</option>
<option value="UnderRepair">two</option>
<option value="WriteOff">three</option>
<option value="Destroyed">four</option>
</select>
</div>

1 Answers

If you want to hide scroll this might work

    .form-group select{
    -ms-overflow-style: none;
    overflow: auto;
}
like image 153
Jakub Pastorek Avatar answered May 07 '26 16:05

Jakub Pastorek



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!