Well you can change the color - in NS7 and Mozilla - but that's it for now...
Main Topics
Browse All TopicsHello,
I've been searching for a way to disable the select box (<SELECT>) border. I succeed to remove input text borders using "border: 0px solid;" but it seems it doesn't work with SELECT BOX. If its not possible, I'd like to know if anyone knows a workaround to remove them.
Thanks,
RODRIGO.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Not without creating a custom select box in dhtml:
http://webfx.eae.net/dhtml
melaniejcook, that's why I said this: http:Q_20828322.html#99577
Just thought I'd append this suggestion to this post as I think it's worth considering for anyone that finds this page, as I did, by searching for a solution to the same problem. This is not 100% perfect and could be tweaked to look better, but the idea is certainly there......
<div style="position:absolute;t
<select size="12" style="position:absolute;w
<option>This is option 1</option>
<option>This is option 2</option>
<option>This is option 3</option>
<option>This is option 4</option>
<option>This is option 5</option>
<option>This is option 6</option>
<option>This is option 7</option>
<option>This is option 8</option>
<option>This is option 9</option>
<option>This is option 10</option>
<option>This is option 11</option>
<option>This is option 12</option>
<option>This is option 13</option>
<option>This is option 14</option>
<option>This is option 15</option>
<option>This is option 16</option>
<option>This is option 17</option>
<option>This is option 18</option>
<option>This is option 19</option>
<option>This is option 20</option>
<option>This is option 21</option>
<option>This is option 22</option>
<option>This is option 23</option>
<option>This is option 24</option>
<option>This is option 25</option>
<option>This is option 26</option>
<option>This is option 27</option>
</select>
</div>
Hope this is useful to people.
John.
Heh - well we know the answer to that, don't we! Dreaded JavaScript.
Unfortunately, unless you can specifiy the height and width of the <select>, you're right. I've not seen anything, other than JavaScript, that will do this. Also, it obviously doesn't work if it's a drop-down style select.
I think we'll have to wait for a foolproof answer to this, and it'll probably be supplied by browser vendors, not us developers.
Glad it's proved useful for someone though.
John.
Business Accounts
Answer for Membership
by: DaydreamsPosted on 2003-12-17 at 08:35:06ID: 9957719
You cannot change the border of the select box at this time. You can style other aspects of <select>, such as color of the text and background-color, but not the border.