本文介绍了如何清除CSS8中IE8中活动超链接周围的虚线边框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

活动的超链接文字以虚线边框突出显示。当对这样的超链接(fadeIn / fadeOut)使用效果时,它会产生奇怪的效果。

解决方案

尝试使用此CSS:

  a:active,a:selected,a:visited {
border:none;
outline:none;
}

注意,这必须在任何 hover 规则。感谢在建议使用 a:selected 的意见中,



/ em>在IE 9中工作。删除a:选择导致它在IE9中工作。


Active hyperlink texts are highlighted with dotted border. When using effects on such hyperlinks (fadeIn/fadeOut) it produces strange effects. How do I disable/remove the dotted border?

解决方案

Try this CSS:

a:active, a:selected, a:visited {
    border: none;
    outline: none;
}

Note that this has to be after any a:hover rules. Thanks to PEra in the comments for suggesting using the a:selected selector as well.

NOTE

The above does not work in IE 9. Removing a:selected causes it to work in IE9.

这篇关于如何清除CSS8中IE8中活动超链接周围的虚线边框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 08:15