这是专门与 selectBoxIt jQuery 插件,使用 jQueryUI 主题。
我为悬停动作设置了这个:
/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
color: #ffffff;
background-color: #ff0000;
text-decoration: none;
}
这很好用。当我将鼠标悬停在选项上时,我会看到带有白色文本的红色背景。
但是,当我这样做时...
.selectboxit-option:focus .selectboxit-option-anchor:focus {
color: #ffffff;
background-color: #ff0000;
text-decoration: none;
}
...没有什么变化。
我看到 selectBoxIt 的主网页上的所有演示都通过键盘焦点改变了背景颜色......所以我错过了什么?