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>
If you want to hide scroll this might work
.form-group select{
-ms-overflow-style: none;
overflow: auto;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With