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.
如果您不喜欢 webkit 在点击链接时突出显示链接,您可以通过以下方式删除该效果:
-webkit-tap-highlight-color: rgb(0, 0, 0, 0);
实际上我想要这种效果,而不是在点击元素周围添加的额外边框。
有没有办法只删除高亮边框?
如果您正在谈论焦点输入周围的橙色边框,您可能想尝试添加 outline:none; 到您的 CSS 属性。
像这样:
input { outline:none; }
缺少一个
应该是 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);