当关注下拉菜单时,我想从 IE 更改蓝色背景颜色,但我似乎找不到任何 CSS 来执行此操作。
<select id=focusSelect><option>Option</option></select>
JS:
document.getElementById("focusSelect").focus();
CSS:
select:focus{
background-color: red;
}
特别是当下拉菜单未打开时。样式化选项不是问题。
我也找不到任何关于这是否可行的明确答案。
设置option
背景颜色也不会清除蓝色。
option {
background-color: green;
}