styles on html form object Select

liunx

Guest
Is there anyway to change the style of a select object?

here is a photo of a select box
<!-- m --><a class="postlink" href="http://www.geocities.com/adamstacey/photo.jpg">http://www.geocities.com/adamstacey/photo.jpg</a><!-- m -->

Is there anyway to get the borders like a solid color?

I can do it for text areas (<input type = "text" ...>)
.textbox {border:2px solid #000000; font-family: Verdana; font-size: 10 px; color: #000000;background-color: #FFFFFF }

But when I apply this style to the select box it only affects the font size.Only with FF:
select {
border:1px solid red;
background:#fffffe;
}

You must have a colored background, not white, and the border style is always inset.
 
Back
Top