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-用户选择:无
和
选择开始
它确实删除了选择器,但仍然出现一个矩形..
如果您指的是单击链接时出现在链接上的矩形,那么您可以使用此 css 规则来定义矩形的颜色和 alpha。使用 0 的 alpha 值使其不可见:
-webkit-tap-highlight-color: rgba(0,0,0,0);
在 DIV 的 CSS 中,尝试使用 outline 属性。
div.no-border { outline: none; }