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

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -