1

我无法摆脱 IE7+ 中的虚线轮廓。我已经添加outline:none; border:none但它仍然无法在任何版本的 IE 中工作。

我已经创建了小提琴,当我在 IE 中运行小提琴时代时它工作正常,但是当我在 HTML 页面中粘贴相同的代码时它就不起作用了。这是小提琴http://jsfiddle.net/6Ayek/4/

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Photos Tab</title>
<style type="text/css">
/* Generated by F12 developer tools. This might not be an accurate representation of the original source file */
#contentContainer { BACKGROUND-IMAGE: url(/s/store/-1/common/gb/Media-Console/popup_bg.jpg); WIDTH: 636px; HEIGHT: 460px; OVERFLOW: auto}
#leftNavigation {   PADDING-LEFT: 15px; WIDTH: 125px; PADDING-RIGHT: 10px; FONT-FAMILY: Arial, Helvetica, sans-serif; FLOAT: left; FONT-SIZE: 12px}
#leftNavigation ul {PADDING-BOTTOM: 0px; LIST-STYLE-TYPE: none; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 0px}
#leftNavigation ul li { WIDTH: 125px; DISPLAY: block;  outline:none !important;}
#leftNavigation ul li a {LINE-HEIGHT: 30px;  DISPLAY: block; FONT-FAMILY: Arial, Helvetica, sans-serif; COLOR: #2c2f30; FONT-SIZE: 12px;; TEXT-DECORATION: none; outline:none !important;}
#leftNavigation ul li a:visited {   COLOR: #2c2f30; outline:none !important; border:none}
#leftNavigation ul li a:hover { COLOR: #000000;  outline:none !important; border:none}
.currentSelection { BORDER-BOTTOM: #0076a3 1px solid; BORDER-LEFT: #0076a3 1px solid; LINE-HEIGHT: 25px; OUTLINE-STYLE: none; OUTLINE-COLOR: invert; PADDING-LEFT: 10px; OUTLINE-WIDTH: medium; DISPLAY: inline-block; BACKGROUND: #0095cd; BORDER-TOP: #0076a3 1px solid; FONT-WEIGHT: bold; BORDER-RIGHT: #0076a3 1px solid; TEXT-DECORATION: none; BEHAVIOR: url('/s/store/-1/common/gb/Media-Console/PIE.htc'); -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; 
}   
</style>
 </head>    
<body>
<div id="leftNavigation">
    <ul>
    <li><a href="#" style="color: white; " class="currentSelection">test</a></li>
    <li><a href="#" style="color: black; ">test 2</a></li>
    <li><a href="#" style="color: black; ">test 2</a></li>
    <li><a href="#" style="color: black; ">test 2</a></li>
    <li><a href="#" style="color: black; ">test 2</a></li>
    </ul>
</div>
</body> 
</html>
4

3 回答 3

3

为此,您只需要一个简短的 CSS 规则:

a { outline: none }

无法回答为什么它在您的 HTML 页面中不起作用,但这是删除轮廓的正确 CSS 代码。

我应该提一下,这种技术对可访问性不是很友好,因为虚线边框对于通过键盘或其他工具导航的人很有帮助。更好的方法是这个 jQuery 片段:

(function($) {
    $(document).on('mousedown mouseup', 'a', function(e) {
        if ('hideFocus' in this) { // IE
            this.hideFocus = e.type == 'mousedown';
        }
        this.blur();
    });
}(jQuery));

更新

我误读了IE7您问题的一部分...您可以尝试添加:

a:focus{
    noFocusLine: expression(this.onFocus=this.blur());
}

但最好的解决方案仍然是 jQuery/javascript 方法。

于 2012-10-05T07:37:47.310 回答
1

在 IE 8outline中添加了对该属性的支持,因此该技术在 IE 7 上不起作用。在较新的版本上,它可以;您的代码在 IE 9 上测试时,可以在 IE 9 模式和 IE 8 模式下运行。(将“作品”定义为“产生所需的可用性问题”。)

要在 IE 7 上达到预期的效果,您可以使用专有的 HTML 属性hidefocus,例如

<li><a href="#" style="color: black; " hidefocus>test 2</a></li>

hideFocus或者在 JavaScript 中设置相应的 DOM 属性。

于 2012-10-05T07:55:41.847 回答
0

如果你可以在你的页面上使用 javascript,试试这个,在 IE9 和 FF15 上为我工作:

    <script type="text/javascript">

        if (document.documentElement.attachEvent)
            document.documentElement.attachEvent('onmousedown', function(){event.srcElement.hideFocus=true});

    </script>
于 2012-10-05T07:57:56.263 回答