0

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?

1
  • 1
    I filed a bug report with Chromium. I guess we'll see what they decide to do with it. Commented Jan 3, 2013 at 23:01

2 Answers 2

1

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.

Sign up to request clarification or add additional context in comments.

3 Comments

FWIW, Firefox handles it properly--the scroll bar it renders still works (including the down arrow button).That's why I'm leaning more toward calling it a bug with Chrome, than to conceding it's an OS problem.
It's not a specification requirement, therefore it is not a bug.
If Chrome had chosen not to implement the resizing (like IE), I would agree that it's just an unimplemented feature. However, for it to break part of the existing functionality of the control seems like a bug.
1

My Chromium bug report was confirmed as such.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.