Monday, March 16, 2009

How To Add Border To HTML Select Tag

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>

No comments: