我正在寻找与select相反的东西:focus,这样可以在选择之后对CSS中的select进行样式化。
概念:
select:when not focused
{
color:transparent;
}
答案 0 :(得分:4)
您可以使用:not
伪类并将其与:focus
组合。这样的事情应该有效:
select:not(:focus) {
color: red;
}
答案 1 :(得分:1)
你的意思是focusout
$("element").focusout(function() { ... });
答案 2 :(得分:1)
编辑@Pzin所说的内容,添加一个带有select的新类来获得你想要的东西。
像
select:focus {
background: white;
}