I have been searching high and low for a way to remove the vertical scroll bar from an HTML . In the attached jsFiddle if size value is omitted ther is no scroll bar. If size=6 or size=7 there is a vertical scroll bar.
I have found several proposed solutions and none of them seem to work.
Does anyone have a solution?
.hideoverflow {
overflow: hidden;
}
<div class="hideoverflow">
<select size="7">
<option id="A">A</option>
<option id="B">B</option>
<option id="C">C.....</option>
<option id="D">D</option>
<option id="E">E</option>
<option id="F">F</option>
</select>
</div>