Reputation: 1305
I'm having a problem with Chrome (v23, Win and Ubuntu). When allowing a select control to be resizable, the scroll bar's down arrow ceases to function--it won't scroll through the options. However, the rest of the scroll bar's functionality continues to work.
select {
resize: both;
overflow: scroll;
}
Here's a Fiddle
The question: Am I doing something wrong, or is the a Chrome bug?
Upvotes: 0
Views: 829
Reputation: 114417
SELECT
(as well as checkbox, radio) is one of those strange elements that's really rendered by the OS, not HTML. The ability to style it via CSS is not well supported.
Upvotes: 1