What CSS should I use to get a border around an option tag in both Firefox and IE?
Right now I am using the following CSS: option { border-width: 1px; border-style: solid; } Which works fine in Firefox but not in IE. I'm not sure if it makes a difference but the option tags are generated by an ASP.NET ListBox control. ...