|
i have the css:
input {
border: 1px solid rgb(133,180,12);
margin:3px;
}
which gives me lovely green bordered buttons on my forms. Id like to apply the same style to dropdown <select>s, so i tried:
select {
border: 1px solid rgb(133,180,12);
margin:3px;
}
which does nothing, so my selects look a bit out of place. off the top of my head, i cant think of any site that does much in the way of <select> formatting, is it possible?
|