正如您从下面的示例中看到的,我有一个黑色背景和红色链接,以强调点击它时链接上显示的点状边框问题.我添加了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>
解决方法
你看到的边界称为轮廓.你可以通过将这种风格放入你的规则来摆脱它:
- outline:none;
我个人总是将它定义为靠近我的样式表顶部的一条规则(我真的不喜欢大纲,即使我知道它们有用)
- a { outline:none; }
希望这可以帮助