Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select Box border colour

Status
Not open for further replies.

shawkz

Programmer
Oct 25, 2005
84
GB
Hi, is it possible to set the border colour on a select item to white so it appears invisible?

Regards,
SHawkz
 
I'm sure the results might change depending on what browser you're using, but I'm going to guess No.

This makes no difference on the appearance of the dropdown in IE:
Code:
<style type="text/css">

select {
   border:1px solid white;
}

</style>

<select>
   <option>1</option>
   <option>2</option>
   <option>3</option>
   <option>4</option>
   <option>5</option>
</select>

-kaht

[small]How spicy would you like your chang sauce? Oh man... I have no idea what's goin' on right now...[/small]
[banghead]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top