asp.net - DropDownList BackColor In IE -
how change dropdownlist backcolor in ie?in firefox paints correctly whole dropdown,but in ie there remains white color in border of dropdown
you may try following tags:
<html> <title>select test</title> <style type="text/css"> ..foo { background: black; color:white; } ..bar { background: transparent; color: red;} </style> <select style="background:yellow; color: red;"> <option style="background:green;color:white;">abelone</option> <option class="foo">banana</option> <option class="bar">cantaloupe</option> </select> </html>
Comments
Post a Comment