vote up 4 vote down star

Does anyone have a solution for styling the borders of "select" elements in Internet Explorer using CSS?

flag

64% accept rate

7 Answers

vote up 4 vote down check

As far as I know, it's not possible in IE because it uses the OS component.

Here is a link where the control is replaced, but I don't know if thats what you want to do.

And here is another link to someone that says it can't be done.

link|flag
vote up 0 vote down

You'd need a custom-designed select box with CSS and JavaScript. You'd need to make absolutely sure it degrades perfectly to a standard select element should a user have JavaScript disabled.

IMO, it's just not worth the effort. Stick with font stylings within the select to make it close to your site's design; leave the borders, etc., to the box elements.

link|flag
vote up 1 vote down

Using ONLY css is impossbile. In fact, all form elements are impossible to customize to look in the same way on all browsers only with css. You can try niceforms though ;)

link|flag
Hey, that looks pretty good - have you implemented this on any sites at all? – Sam Murray-Sutton Feb 3 at 13:11
I tried once but i didn't like it so i wrote my own script :P – Ionut Staicu Feb 6 at 21:44
vote up 1 vote down

From my personal experience where we tryed to put the border red when an invalid entry was selected, it is impossible to put border red of select element in IE.

As stated before the ocntrols in internet explorer uses WindowsAPI to draw and render and you have nothing to solve this.

What was our solution was to put the background color of select element light red (for text to be readable). background color was working in every browser, but in IE we had a side effects that the element where the same background color as the select.

So to summarize the solution we putted :

select
{
  background-color:light-red;
  border: 2px solid red;
}
option
{
  background-color:white;
}

Note that color was set with hex code, I just don't remember which.

This solution was giving us the wanted effect in every browser except for the border red in IE.

Good luck

link|flag
vote up 0 vote down

Check out this code... hope ur happy :)

Untitled Document *{margin:0;padding:0;} select {font: normal 13px Arial, SansSerif, Verdana; color: black;} .wrapper{width:198px; position: relative; height: 20px; overflow: hidden; border-top:1px solid #dddddd; border-left:1px solid #dddddd;} .Select{color: black; background: #fff;position: absolute; width: 200px; top: -2px; left: -2px;} optgroup{background-color:#0099CC;color:#ffffff;}

ASP PHP ColdFusion Adobe Photoshop DreamWeaver CSS Adobe Flash

Sajay sajaycv@yahoo.co.in

link|flag
vote up 0 vote down

IE < 8 does not render the dropdown list itself it just uses the windows control which cannot be styled this way. Beginning from IE 8 this has changed and the styling is now applied. Of course, its market share is rather negligible yet.

link|flag
vote up 0 vote down

I've worked around the inability to put a border on the select in IE7 (IE8 in compatibility mode)

By giving it a border as wel as a padding, it looks like something....

Not everything, but it's start...

link|flag

Your Answer

Get an OpenID
or

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