views:

100

answers:

3

How to stylize a combo box?

+1  A: 

You can't do much, without replacing it with something that emulates the functionality without truly being a "select element".

If you're interested in that though, here's a couple good articles about it:

<select> Something New, Part 1

<select> Something New, Part 2

Chad Birch
A: 

If you want to change the enitre look of a select box ( making custom image as arrow button etc ) you can use a div and can code in JavaScript to behave like a combo box.

Check this for a nice one in javascript

rahul
A: 

You can't do much with regular CSS. Try with jQuery plugins, like this one or read more about enhancing dropdowns.

Stiropor