如何在 Mozilla Firefox 89 中删除焦点复选框中不必要的蓝色轮廓
How to remove unnecessary blue outlines of focused checkbox in Mozilla Firefox 89
Firefox 89 中的焦点复选框如下所示:
通过使用 userContent.css 文件 - input[type="checkbox"] {outline: none;}
没有帮助。还有其他方法吗?也许在 about:config
?
input[type="checkbox"]:focus{
outline:0;
}
Firefox 89 中的焦点复选框如下所示:
通过使用 userContent.css 文件 - input[type="checkbox"] {outline: none;}
没有帮助。还有其他方法吗?也许在 about:config
?
input[type="checkbox"]:focus{
outline:0;
}