tags:

views:

36

answers:

1

Is there a way to remove the scroll bar in a select element with the 'multiple' attribute enabled?

<select name="test" multiple>
    <option value="foo">Foo</option>
    <option value="bar">Bar</option>
    <option value="baz">Baz</option>
</select>
+1  A: 

You should not remove it actually for accessibility reasons. If you do so, it would look like a textarea rather than a multi selectbox.

Web Logic
I don't disagree but I'm curious as to whether it is even possible.
Darrell Brogdon
@Darrell Brogdon: I did search for the solution but found none. Probably for the obvious reasons, it is not possible. Let's see if someone could come up with a solution.
Web Logic