Does anyone have a solution for styling the borders of "select" elements in Internet Explorer using CSS?
feedback
|
|
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. | |||||||
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); | |||||||
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 :
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 | |||
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
| |||
|
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 ;) | |||||||||||||
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. | |||
|
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... | |||
|
feedback
|
|
Check out this code... hope ur happy :)
Sajay | ||||
|
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. | |||
|
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 . | |||
|
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 | |||
|
feedback
|
|
Just add an doctype declaration before the html tag ex.: It is gonna work in JSP files as well. For further info: HTML Doctype Declaration | |||
|
feedback
|
|
It works!!! Use the following code:
| ||||
|
feedback
|