up vote 16 down vote favorite
4
share [g+] share [fb]

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

link|improve this question

You could just wrap the select tag with a div and put the border on that div – Kieran Jun 2 '11 at 4:47
feedback

14 Answers

up vote 17 down vote accepted

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|improve this answer
The first link in this answer is dead (404). – mydoghasworms May 31 '11 at 7:34
2  
@mydoghasworms: I'm very sorry that a link in an answer made 2½ years ago don't work anymore. You can still access the page via: web.archive.org/web/20090922234755/http://v2.easy-designs.net/… – some May 31 '11 at 16:27
feedback

extrapolate it! :)

filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=-1, OffY=0,color=#FF0000) progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=0,color=#FF0000) progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=-1,color=#FF0000) progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=1,color=#FF0000);

link|improve this answer
2  
Hey! That was very good! – Tony Oct 22 '11 at 0:28
This is a great alternative to what I was doing in IE7 and below, which was using a wrapper div around the element. And in IE8+ I can just use the more standard outline property instead. – zachleat Jan 23 at 23:06
feedback

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|improve this answer
similar to this you chould just wrap the select tag in a div with a border on it. – Kieran Jun 2 '11 at 4:46
feedback

i was having this same issue with ie, then i inserted this meta tag and it allowed me to edit the borders in ie

<meta http-equiv="X-UA-Compatible" content="IE=100" >
link|improve this answer
feedback

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|improve this answer
Hey, that looks pretty good - have you implemented this on any sites at all? – Sam Murray-Sutton Feb 3 '09 at 13:11
I tried once but i didn't like it so i wrote my own script :P – Ionut Staicu Feb 6 '09 at 21:44
Nice link, thanks. But (not surprisingly): "The script is fully compatible and has been tested with most major browsers, with the exception of IE6." – Daniel Rinser Jul 26 '10 at 11:18
2  
@Daniel: IE6 is a 10 years old browser. Don't you want to let it rest in peace? :) Besides that: dowebsitesneedtolookexactlythesameineverybrowser.com ;) – Ionut Staicu Jul 26 '10 at 16:24
Don't get me wrong, I hate IE6 (like everyone involved in webdev) and agree 100% that websites shouldn't be designed "pixel-perfect" or expected to look the same in every browser. I just wanted to point this out because the question explicitly states IE6/IE7. – Daniel Rinser Jul 27 '10 at 17:35
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<style type="text/css">
*{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;}
</style>
</head>

<body>
<div class="wrapper">
<select class="Select">
<optgroup label="WebDevelopment"></optgroup>
<option>ASP</option>
<option>PHP</option>
<option>ColdFusion</option>
<optgroup label="Web Design"></optgroup>
<option>Adobe Photoshop</option>
<option>DreamWeaver</option>
<option>CSS</option>
<option>Adobe Flash</option>
</select>
</div>
</body>
</html>

Sajay

link|improve this answer
feedback

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|improve this answer
feedback

use div around your box

link|improve this answer
feedback

it solves to me, for my purposes:

.select-container { position:relative; width:200px; height:18px; overflow:hidden; border:1px solid white !important } .select-container select { position:relative; left:-2px; top:-2px }

To put more style will be necessary to use nested divs .

link|improve this answer
feedback

To do a border along one side of a select in IE use IE's filters:

select.required { border-left:2px solid red; filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=-2, OffY=0,color=#FF0000) }

I put a border on one side only of all my inputs for required status.

There is probably an effects that do a better job for an all-round border ...

http://msdn.microsoft.com/en-us/library/ms532853(v=VS.85).aspx

link|improve this answer
feedback

Just add an doctype declaration before the html tag

ex.: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/strict.dtd">

It is gonna work in JSP files as well. For further info: HTML Doctype Declaration

link|improve this answer
feedback

It works!!! Use the following code:

<style>
div.select-container{
   border: 1px black;width:200px;
}
</style>


<div id="status" class="select-container">
    <select name="status">
        <option value="" >Please Select...</option>
        <option value="option1">Option 1</option>
        <option value="option2">Option 2</option>
    </select>
</div>
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.