Outlines on links in IE9 remains when focus is changed

馋奶兔 提交于 2019-12-11 03:14:43

问题


I have some CSS to change the style of the outline on my page.

*:focus{outline: #5ab6df dotted 2px; }   

But when I tab to different links, part of the outline will remain on previous links.

Any help would be appreciated. -IE 9, not running in compatibility mode.


回答1:


Have you tried to set the outline-property to none in the *-selector?

* { outline:none; }


来源:https://stackoverflow.com/questions/14387672/outlines-on-links-in-ie9-remains-when-focus-is-changed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!