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.
我有一些 CSS 来更改页面上大纲的样式。
*:focus{outline: #5ab6df dotted 2px; }
但是当我点击不同的链接时,部分大纲将保留在以前的链接上。
任何帮助,将不胜感激。-IE 9,不在兼容模式下运行。
您是否尝试在 *-selector 中将 outline-property 设置为 none?
* { outline:none; }