Is it possible to style the HTML Select attribute to be more flat looking? I can set the border to be 1px solid but the dropdown portion still looks 3D and ugly looking.
+2
A:
Unfortunately, no.
Take a look at this answer for some other options using JavaScript and what you can style using CSS.
Chris Pebble
2010-08-05 19:12:31
I swear I have seen some sites do this. Are there any alternatives? Like a UI plugin that is just made to look like a select box?
Dismissile
2010-08-05 19:13:31
They're mocking up a dropdown using css and javascript, not actually manipulating a `<select>` tag. Here's one example: http://www.brainfault.com/jquery-plugins/jquery-selectbox-replacement/
Chris Pebble
2010-08-05 19:17:19
Thanks! I kind of figured that's what they were doing...but I couldn't think of any examples off the top of my head.
Dismissile
2010-08-05 20:40:58