Change border color on <select> HTML form
Is it possible to change the border color on a <select/> element in an HTML form? The border-color style works in Firefox but not IE. I could find no real answers on Google. I would consinder enclosing that select block within a div block and setting the border property like so: <div style="border: 2px solid blue;"> <select style="width: 100%;"> <option value="Sal">Sal</option> <option value="Awesome">Awesome!</option> </select> </div> You should be able to play with that to accomplish what you need. As Diodeus stated, IE doesn't allow anything but the default border for <select> elements.