Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从谷歌浏览器的下拉菜单中删除黄色边框?
文本框还可以,它们显示出很棒的蓝色轮廓,但下拉菜单却没有。
提前致谢!
您可以通过使其透明来删除轮廓,如下所示:
select:focus { outline-color: transparent; }
你应该改用这个:
.bootstrap-select .btn:focus { outline-color: transparent !important; }
因为它将选择转换为带有列表元素的按钮。然后该按钮获得一个为其设置的类 - 上面的一个。
// 麦卡德尔