1

is it possible to edit the arrow which we get in the select tag (Rails)

I want to replace the arrow which we get in the select tag(drop down element) with my own image..

Is it possible to do the same?

Sumeru Suresh
  • 3,121
  • 5
  • 28
  • 31

1 Answers1

1

It's not possible to do that with the <select> tag. There're solutions to replace it with <ul>/<ol> and some Javascript.

See answers to question Is it possible to style a select box?.

Community
  • 1
  • 1
Matt
  • 5,328
  • 2
  • 30
  • 43
  • I recommend this as a design pattern in general because every browser puts selects together completely different. – Trip Oct 21 '10 at 11:44