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.
1 Answer
Unfortunately, no.
Take a look at this answer for some other options using JavaScript and what you can style using CSS.
3 Comments
Dismissile
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?
Chris Van Opstal
They're mocking up a dropdown using css and javascript, not actually manipulating a
<select> tag. Here's one example: brainfault.com/jquery-plugins/jquery-selectbox-replacementDismissile
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.