is it possible do change the border-style and the border-color of a drop down
box? i had used border-style: xxx and boder-color: yyy but it dosent work.
thx for your help
Hopefully IE6 will fix these problems...
you should be able to do something like this:
select[size="1"] {
border: 2px outset #f00;
background-color: #ff0;
color: #f90;
}
now you would expect every select and its drop-down menu to have a 2px
outset red border. :-)