我添加了以下 CSS 代码以消除单击链接 HTML 元素后出现的轮廓。
CSS 代码:
.window-leveling-btn:focus {
outline: 0;
}
之后我收到以下 csslint 错误消息。我不明白为什么我不应该这样做或者我应该如何正确地做到这一点。
错误消息:WARNING: Outlines shouldn't be hidden unless other visual changes are made. Use of outline: none or outline: 0 should be limited to :focus rules. (outline-none)