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

前端之家收集整理的这篇文章主要介绍了html – 设置border-style:none;在我的锚标签上但是当我点击链接时边框出现 – 为什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
正如您从下面的示例中看到的,我有一个黑色背景和红色链接,以强调点击它时链接显示的点状边框问题.我添加了border-style:none但它似乎没有任何效果.是否有其他方法可以在单击链接删除链接周围出现的虚线边框?
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <Meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Untitled Document</title>
  6. <style type="text/css">
  7. html,body
  8. {
  9. height: 100%;
  10. margin: 0;
  11. padding: 0;
  12. font-weight:normal;
  13. font-size:12pt;
  14. font-family: Verdana,Arial,Helvetica,serif,sans-serif;
  15. background:black;
  16. }
  17.  
  18. #linksouter
  19. {
  20. margin: 0;
  21. padding: 0;
  22. border-style:solid;
  23. border-width:0px;
  24. position:absolute;
  25. top: 0px;
  26. left: 0px;
  27. width: 80px;
  28. text-align:left;
  29. }
  30. #linksinner
  31. {
  32. margin: 80px 0 0 .5em;
  33. width:100%;
  34. display:inline;
  35. height:100%;
  36. }
  37. #linksinner a
  38. {
  39. color:red;
  40. text-decoration: none;
  41. display:block;
  42. margin: 5px 0 0 0;
  43. border-style:none;
  44. }
  45. </style>
  46. </head>
  47.  
  48. <body>
  49. <div id="linksouter">
  50. <div id="linksinner">
  51. <a href="#">1</a>
  52. <a href="#">1</a>
  53. <a href="#">1</a>
  54. <a href="#">1</a>
  55. <a href="#">1</a>
  56. </div>
  57. </div>
  58.  
  59. </body>
  60. </html>

解决方法

你看到的边界称为轮廓.你可以通过将这种风格放入你的规则来摆脱它:
  1. outline:none;

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

  1. a { outline:none; }

希望这可以帮助

猜你在找的HTML相关文章