I'm trying to hide the scrollbar on a list box unless it's necessary but can't get it to behave. It seems to always want to show. I am using Chromium, I haven't checked in other browsers whether it behaves.
HTML
<select size="2">
<option>item</option>
<option>item</option>
<option>item</option>
<option>item</option>
<option>item</option>
</select>
CSS
select {
width: 200px;
min-height: 400px;
overflow: auto;
}
The above code produces:
