Is there a css only way to style <select> dropdown?

I need to style a form as much as humanly possible without any javascript intervention. What are the properties I can use to do so in CSS?

This code needs to be compatible with all major browsers.IE6,7,8 All FF and safari versions

Edit:

I know i can make it with javascript

http://www.queness.com/post/204/25-jquery-plugins-that-enhance-and-beautify-html-form-elements

and i'm not talking about simple styling. i want to know, what best we can do with css only.

Edit 2:

I found similar questions on SO

http://stackoverflow.com/questions/1072239/is-it-possible-to-style-a-select-box

and this one on Doctype.com

http://doctype.com/style-select

link|improve this question

64% accept rate
nothing much found on google only js solution is there – Jitendra Vyas Dec 13 '09 at 3:36
1  
I'm not sure why this is getting downvotes. It's a legitimate question, if a bit vague. – Dave Ward Dec 13 '09 at 3:42
I feel it's a legitimate question, but the answer is "no, not really" or "not the way you want it". But no one (neither me) is 100% sure about it, this feeling of ambiguity crawls underneath reader's skin and the legitimacy of the question gets questioned. – ZJR Dec 13 '09 at 3:56
@Jitendra, I know what your getting at. We'd love it if you made your question more explicit. Plus, I think I found what you might be looking for. This is experimental, but check it out: cappuccino.org/aristo/showcase – jeremyosborne Dec 13 '09 at 3:59
@jeremyosborne - Thanks for reply. I know i can make it with javascript . your eaxmple link is based on JS. Why i asked this question because i wanted to know, is anybody's there knows about what best we can do with css only – Jitendra Vyas Dec 13 '09 at 8:25
show 2 more comments
feedback

11 Answers

up vote 57 down vote accepted

It is possible, but unfortunately only in Chromium and Chrome browsers to the extent we, as developers, require. Here is the example of CSS styling gathered from Chrome 10 options panel via built-in developer tools inspector:

select {
  -webkit-appearance: button;
  -webkit-border-radius: 2px;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-padding-end: 20px;
  -webkit-padding-start: 2px;
  -webkit-user-select: none;
  background-image: url(../images/select-arrow.png), 
    -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
  background-position: center right;
  background-repeat: no-repeat;
  border: 1px solid #AAA;
  color: #555;
  font-size: inherit;
  margin: 0;
  overflow: hidden;
  padding-top: 2px;
  padding-bottom: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;}

When you run this code on any page within Chrome it will change the appearance of the select box, remove standard OS-arrow and add PNG-arrow, put some spacing before and after the label, almost anything you want.

the most important part is -webkit-appearance declaration which changes how the control behaves.

It works to some point in Firefox 4, when using -moz prefix, but it seems that Gecko doesn't fully support appearance.

link|improve this answer
Hey, I noticed that the select boxes started looking very different as of Firefox 12 (it looks a LOT like Chrome's (I have a Mac)), and it seems that FF 12 supports a bunch more appearance attributes. – Cameron Spear Apr 30 at 18:17
feedback

<select> tags can be styled through CSS just like any other HTML element on an HTML page rendered in a browser. Below is an (overly simple) example that will position a select element on the page and render the text of the options in blue.

Example HTML file (selectExample.html):

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
  <title>Select Styling</title>
  <link href="selectExample.css" rel="stylesheet">
</head>
<body>
<select id="styledSelect" class="blueText">
  <option value="yourMom">Your Mom</option>
  <option value="myMom">My Mom</option>
</select>
</body>
</html>

Example CSS file (selectExample.css):

/* All select elements on page */
select {
  position: relative;
}

/* Style by class. Effects the text of the contained options. */
.blueText {
  color: #0000FF;
}

/* Style by id. Effects position of the select drop down. */
#styledSelect {
  left: 100px;
}
link|improve this answer
Hey, let's try to keep our mother's out of this :P +1 for an excellent and helpful answer. – Shawn 2 days ago
feedback

The select element and its dropdown feature are difficult to style.

This link confirms what Ryan Dohery said in a comment to the first answer.

"The select element is part of the operating system, not the browser chrome. Therefore it is very unreliable to style, and does not necessarily make sense to try anyways."

link|improve this answer
feedback

This works for me http://www.danielneumann.com/blog/how-to-style-dropdown-with-css-only/ Fails in Opera though.

select {
    border: 0 none;
    color: #FFFFFF;
    background: transparent;
    font-size: 20px;
    font-weight: bold;
    padding: 2px 10px;
    width: 378px;
    *width: 350px;
    *background: #58B14C;
    }

#mainselection {
    overflow: hidden;
    width: 350px;
    -moz-border-radius: 9px 9px 9px 9px;
    -webkit-border-radius: 9px 9px 9px 9px;
    border-radius: 9px 9px 9px 9px;
    box-shadow: 1px 1px 11px #330033;
    background: url("arrow.gif") no-repeat scroll 319px 5px #58B14C;
    }

<div id="mainselection">
     <select>
     <option>Select an Option</option>
     <option>Option 1</option>
     <option>Option 2</option>
     </select>
</div>
link|improve this answer
link not working – Jitendra Vyas Dec 6 '11 at 13:45
feedback

The largest inconsistency I've noticed when styling select dropdowns is Safari and Chrome rendering (Firefox is fully customizable through CSS). After some searching through obscure depths of the internets (and interwebs) i came across the following, which nearly completely resolves my qualms with webkit:

Safari and Chrome fix:

select
  -webkit-appearance: none;

This does, however, remove the dropdown arrow. You can add a dropdown arrow using a nearby div with background, negative margin or absolutely positioned over the select dropdown.

more information and other variables available here: http://css-infos.net/property/-webkit-appearance

link|improve this answer
Don't forget to add your styling after that ;) But I am very glad i read this comment today. – teewuane 10 hours ago
feedback

Yes. You may style any HTML element by its tag name, like this:

select {
  font-weight: bold;
}

Of course, you can also use a CSS class to style it, like any other element:

<select class="important">
  <option>Important Option</option>
  <option>Another Important Option</option>
</select>

<style type="text/css">
  .important {
    font-weight: bold;
  }
</style>
link|improve this answer
2  
i'm not talking about like this i want to change dropdown arrow to something else – Jitendra Vyas Dec 13 '09 at 3:38
4  
You can't style the dropdown arrow to another image, it's controlled by the OS. If you really need to, your best bet is to use a DHTML dropdown widget. – Ryan Doherty Dec 13 '09 at 3:39
1  
You can only change CSS properties through CSS. You can change its margin, padding, font properties, background-color, etc. If you want to make it look completely different, you basically have to replace it with graphics at runtime via JavaScript (which isn't a terrible solution if done well). – Dave Ward Dec 13 '09 at 3:39
@Ryan Doherty ok – Jitendra Vyas Dec 13 '09 at 3:40
Upvoted for effort – David Caunt Dec 13 '09 at 3:41
feedback

If style is an important issue using a completely custom widget might help, like this one: http://www.jankoatwarpspeed.com/post/2009/07/28/reinventing-drop-down-with-css-jquery.aspx

link|improve this answer
feedback

Use the clip property to crop the borders and the arrow of the select element, then add your own replacement styles to the wrapper:

<!DOCTYPE html>
<html>
  <head>
    <style>
      select { position: absolute; clip:rect(2px 49px 19px 2px); z-index:2; }
      body > span { display:block; position: relative; width: 64px; height: 21px; border: 2px solid green;  background: url(http://www.stackoverflow.com/favicon.ico) right 1px no-repeat; }
    </style>
  </head>
  <span>
    <select>
      <option value="">Alpha</option>
      <option value="">Beta</option>
      <option value="">Charlie</option>
    </select>
  </span>
</html>

Coordinates differ between Webkit and other browsers, but a @media query can cover that.

link|improve this answer
Paul, that would be a good solution, unfortunately you can't click the arrow that way. – Oliver Schmid Jan 16 at 9:43
+1 worked in a lot of browser – Webtecher May 14 at 12:15
Working well for me, at least in chrome: position: absolute; clip: rect(2px 85px 128px 2px); z-index: 2; padding-left: 18px; padding-right: 18px; margin: 7px auto; color: #555; font-size: inherit; background-color: transparent; – BrianFreud May 19 at 21:35
feedback
select  {
  outline: 0;
  overflow: hidden;
  height: 30px;
  background: #2c343c;
  color:#747a80;
  border:#2c343c ;
  padding:5px 3px 5px 10px;
  -moz-border-radius:6px;
 -webkit-border-radius:6px;
 border-radius:10px;
}

select option {border:1px solid #000; background:#010;}
link|improve this answer
feedback

I don't have a CSS solution, because no matter how you style it, it will still look different. So far, Javascript has the best solution to ensure it looks identical in term of look and functionality:

http://favbulous.com/post/460/standardise-the-appearance-of-web-drop-down-list

or, try this plugin

http://harvesthq.github.com/chosen/

link|improve this answer
feedback

I am a beginner at this kind of thing, too.

The simple answer to the original question is make sure you experiment with styling (css) the select tag.

e.g.

select {
border: 5px solid #ccc;
color: #red;
}

Hope this helps is a more concise way ;-p

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.