
March 19th, 2002, 05:00 PM
|
|
Contributing User
|
|
Join Date: Apr 2001
Location: USA
Posts: 33
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
CSS border effects on <select>?
I've got a series of text input boxes and a couple of select boxes that I'm trying apply border effects to. The text boxes work fine, but the select lists won't display the border. They inherit the background and font color settings though. Here's the code I'm using. Is there anyway to do this?
Code:
.formField {
background-color: #333333;
border-bottom:#FFCC00 1px solid;
border-left:#FFCC00 1px solid;
border-right:#FFCC00 1px solid;
border-top:#FFCC00 1px solid;
padding-bottom: 1px;
padding-left: 2px;
padding-right: 2px;
padding-top: 1px;
color: #99CCFF;
font-family:Arial,Helvetica,sans-serif;
font-size: 8pt;
font-weight: bold;
}
|