如何摆脱可怕的矩形arround <a>标签

Gor*_*Ape 1 html css

我正在开发一个网站,无处不在我有这个烦人的问题...我想知道其他网站怎么没有这个问题...任何建议?stackoverflow有这个问题,因为我看到... http://inath.gr/这个网站例如在顶部菜单虽然它有<a>标签没有矩形围绕它选择某种方式..

M2t*_*2tM 7

CSS大纲属性:

您可以将其关闭:

<style type = "text/css">
    a {outline:0;} /*this is that dotted line you get when you select an image, I believe you're talking about the outline*/
    a img {border:0;} /*Images in links default to having a blue border, so this could be the source of another annoying rectangle*/
</style>
Run Code Online (Sandbox Code Playgroud)