设置border-style:none;在我的锚标签上但是当我点击链接时边框出现 - 为什么?

时间:2009-07-16 01:01:15

标签: html css onclick border

从下面的示例中可以看出,我有一个黑色背景和红色链接,以强调点击它时链接上出现的虚线边框问题。我添加了border-style:none,但它似乎没有任何效果。是否有其他方法可以在单击链接时删除链接周围出现的虚线边框?

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
html, body 
{
    height: 100%;
    margin: 0;
    padding: 0;
    font-weight:normal;
    font-size:12pt;
    font-family: Verdana, Arial, Helvetica, serif, sans-serif;
    background:black;
}

#linksouter
{
    margin: 0;
    padding: 0;
    border-style:solid;
    border-width:0px;
    position:absolute;
    top: 0px;
    left: 0px;
    width: 80px;
    text-align:left;
}
#linksinner
{
    margin: 80px 0 0 .5em;
    width:100%;
    display:inline;
    height:100%;
}
#linksinner a
{
    color:red;
    text-decoration: none;
    display:block;
    margin: 5px 0 0 0;
    border-style:none;
}
</style>
</head>

<body>
<div id="linksouter">
    <div id="linksinner">
    <a href="#">1</a>
    <a href="#">1</a>
    <a href="#">1</a>
    <a href="#">1</a>
    <a href="#">1</a>
    </div>
</div>

</body>
</html>

4 个答案:

答案 0 :(得分:12)

您看到的边框称为轮廓。您可以通过将此样式放入a规则中来摆脱它:

outline:none;

我个人总是把它定义为靠近我的样式表顶部的一条a规则(我真的不喜欢大纲,即使我知道它们有用)

a { outline:none; }

希望这会有所帮助

答案 1 :(得分:3)

这不是边界,而是轮廓。

您可以通过设置:

来禁用它
a {
    outline: none;
}

答案 2 :(得分:-1)

我认为您需要为链接定义所有规则,例如Link,Hover,Active和Visited。

更多信息:http://www.echoecho.com/csslinks.htm

答案 3 :(得分:-1)

您是否尝试在链接上使用这些伪选择器? 像

a:hover
a:active

当您使用a设置css时,它只会更改链接上的静态外观。