Jamie Jackson
Jamie Jackson

Reputation: 1305

Resizing an HTML Select with CSS Breaks Control's Scroll Bar in Chrome

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

Answers (2)

Jamie Jackson
Jamie Jackson

Reputation: 1305

My Chromium bug report was confirmed as such.

Upvotes: 1

Diodeus - James MacFarlane
Diodeus - James MacFarlane

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

Related Questions