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.
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.
Add a border-color to your declaration.
option
{
border-width: 1px;
border-style: solid;
border-color: #000;
}
Maybe this way it would work?!
border: 1px solid black;
Never had problems with this, could be something else , parent elements and so on...