Is it possible to style a select box? [closed]

I’ve seen some jQuery plugins out there that convert <select>‘s to <ol>‘s and <option>‘s to <li>‘s, so that you can style it with CSS. Couldn’t be too hard to roll your own.

Here’s one: https://gist.github.com/1139558 (Used to he here, but it looks like the site is down.)

Use it like this:

$('#myselectbox').selectbox();

Style it like this:

div.selectbox-wrapper ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
}
div.selectbox-wrapper ul li.selected { 
  background-color: #EAF2FB;
}
div.selectbox-wrapper ul li.current { 
  background-color: #CDD8E4;
}
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:2px;
  cursor:pointer;
}

Leave a Comment