IE scrolling error

IE error, how do I remove the scrollbar in this dropdown menu, I don't need it? Works great in chrome, 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>

      

+3


source to share


1 answer


If you want to hide the scrolling this might work



    .form-group select{
    -ms-overflow-style: none;
    overflow: auto;
}

      

+3


source







All Articles