SELECT tag and border style
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>
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)












