问题
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