I have applied padding on my option's which seems to work fine in chrome and firefox but on IE11... the padding is not visible at all.
I looked up online and tried various things like:
-ms-appearance: none;
but none of it helped with the issue.
HTML:
<div>
<select class="listBox list-box" size="6" multiple>
<option>Test 1</option>
</select>
</div>
CSS:
.listBox {
height: 250px;
width: 200px;
}
.list-box option {
padding-top: 13px;
padding-bottom: 7px;
padding-left: 15px;
}
select {
padding: 10px;
width: 200px;
}