我想在Bootstrap 3下拉选项中更改下拉箭头的颜色.
到目前为止,这是我的CSS,我已经改变了背景,边框,字体和选项颜色,但是箭头还没有运气:
select{
background-color: #555;
color: white;
border: 1px solid #ffffff;
}
select:after {
color: white !important;
}
option:checked {
background-color: #eee;
color:#555;
}
option:not(:checked) {
background-color: white;
color:#000;
}
Run Code Online (Sandbox Code Playgroud)