SELECT tag and border style
Filed in Web Design on Mar.05, 2009
HTML <select> tag (aka DropDownList) do not suport BORDER style. But you can add border with a trick… by adding a SPAN/DIV tag around it with required style.
Here is the code:
<span style="border:solid 2px red"> <select style="border:solid 2px red"> <option>asdf</option> <option>asdf</option> <option>asdf</option> </select></span>
Related posts:























Leave a Reply
You must be logged in to post a comment.