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.
当我在我的 TideSDK 应用程序中按下一个按钮时,我得到一个难看的焦点轮廓。有没有办法禁用/删除它?我尝试将大纲设置为无,但它似乎没有做任何事情。
:focus, :active { outline: none; border: 0; }
这是有问题的大纲的图片:
非常感谢!
如果要从所有链接中删除它:
a { outline: 0; }
更深入的解释在这里:http ://css-tricks.com/removing-the-dotted-outline/