2011-05-10 2 views
2
내가 IE에서 DropDownList로의 BackColor를 변경하려면 어떻게

에서 파이어 폭스에서는 제대로 전체 드롭 다운 페인트,하지만 IE에서 항상 거기DropDownList로의 BackColor는 IE

+0

IE 버전은 무엇입니까? Firefox 4, IE9, Chrome 11에는 차이점이 없습니다. –

답변

0

당신은 다음과 같은 태그를 시도 할 수 드롭 다운 테두리에 흰색을 유지 :

<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>