1

我正在寻找这个小问题。我发现除了边界:0;这根本没有做任何事情......

我正在使用 css reset 并且在除 IE 之外的每个浏览器中一切正常。我没有任何较旧的 IE,所以这个问题出现在 IE 9 中...

当我有一个链接到某个地方的图像时......

例子:

<a id="deviantart" href="http://deviantart.com" target="_blank"></a>

    #deviantart {
    background: url("../img/socials-sprite.png") 0 21px;
    width: 21px;
    height: 21px;
    position: absolute;
    }

当我点击它时,会出现一种边框......预览:http ://snpr.cm/uJl3Q4.png

不知道为什么会出现那个东西,有什么解决方案可以解决吗?当我看到其他浏览器中的某些内容无法正常工作时,我感到很紧张......

4

1 回答 1

1

尝试将outline属性设置为none.

#deviantart {
  outline: none;
}
于 2012-05-17T21:36:05.543 回答