I want to change a select tag arrow with an image, and also I want to have another image as hover state, and one for pressed state. And I should do that with CSS2.1 (no CSS3 solution please). How can I do that?
feedback
|
|
Whenever I need to style selects I use http://jamielottering.github.com/DropKick/ | |||||||||
feedback
|
|
U can use background-image property in "element name":hover,"element":visited | |||
|
feedback
|
|
That is not possible to do with just CSS, you will have to make use of JavaScript to accomplish it. | ||||
|
feedback
|
|
The only crossbrowser way to style form fields other than text fields and buttons is using JavaScript to implement custom form-controls. | |||
|
feedback
|