CSS 链接

我们能够以不同的方法为链接设置样式。

设置链接的样式

能够设置链接样式的 CSS 属性有很多种(例如 color, font-family, background 等等)。

链接的特殊性在于能够根据它们所处的状态来设置它们的样式。

链接的四种状态:

  • a:link - 普通的、未被访问的链接
  • a:visited - 用户已访问的链接
  • a:hover - 鼠标指针位于链接的上方
  • a:active - 链接被点击的时刻

实例

  1. a:link {color:#FF0000;} /* 未被访问的链接 */
  2. a:visited {color:#00FF00;} /* 已被访问的链接 */
  3. a:hover {color:#FF00FF;} /* 鼠标指针移动到链接上 */
  4. a:active {color:#0000FF;} /* 正在被点击的链接 */

当为链接的不同状态设置样式时,请按照以下次序规则:

  • a:hover 必须位于 a:link 和 a:visited 之后
  • a:active 必须位于 a:hover 之后

常见的链接样式

在上面的例子中,链接根据其状态改变颜色。

让我们看看其他几种常见的设置链接样式的方法:

文本修饰

text-decoration 属性大多用于去掉链接中的下划线:

实例

  1. a:link {text-decoration:none;}
  2. a:visited {text-decoration:none;}
  3. a:hover {text-decoration:underline;}
  4. a:active {text-decoration:underline;}

背景色

background-color 属性规定链接的背景色:

实例

  1. a:link {background-color:#B2FF99;}
  2. a:visited {background-color:#FFFF85;}
  3. a:hover {background-color:#FF704D;}
  4. a:active {background-color:#FF704D;}

更多实例

向链接添加不同的样式

本例演示如何向链接添加其他样式。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. a.one:link {color:#ff0000;}
  6. a.one:visited {color:#0000ff;}
  7. a.one:hover {color:#ffcc00;}
  8. a.two:link {color:#ff0000;}
  9. a.two:visited {color:#0000ff;}
  10. a.two:hover {font-size:150%;}
  11. a.three:link {color:#ff0000;}
  12. a.three:visited {color:#0000ff;}
  13. a.three:hover {background:#66ff66;}
  14. a.four:link {color:#ff0000;}
  15. a.four:visited {color:#0000ff;}
  16. a.four:hover {font-family:'微软雅黑';}
  17. a.five:link {color:#ff0000;text-decoration:none;}
  18. a.five:visited {color:#0000ff;text-decoration:none;}
  19. a.five:hover {text-decoration:underline;}
  20. </style>
  21. </head>
  22. <body>
  23. <p>请把鼠标指针移动到下面的链接上,看看它们的样式变化。</p>
  24. <p><b><a class="one" href="/index.html" target="_blank">这个链接改变颜色</a></b></p>
  25. <p><b><a class="two" href="/index.html" target="_blank">这个链接改变字体尺寸</a></b></p>
  26. <p><b><a class="three" href="/index.html" target="_blank">这个链接改变背景色</a></b></p>
  27. <p><b><a class="four" href="/index.html" target="_blank">这个链接改变字体</a></b></p>
  28. <p><b><a class="five" href="/index.html" target="_blank">这个链接改变文本的装饰</a></b></p>
  29. </body>
  30. </html>

高级 - 创建链接框

本例演示了更高级的示例,我们结合了若干种 CSS 属性,来把链接显示为方框。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. a:link,a:visited
  6. {
  7. display:block;
  8. font-weight:bold;
  9. font-size:14px;
  10. font-family:Verdana, Arial, Helvetica, sans-serif;
  11. color:#FFFFFF;
  12. background-color:#98bf21;
  13. width:120px;
  14. text-align:center;
  15. padding:4px;
  16. text-decoration:none;
  17. }
  18. a:hover,a:active
  19. {
  20. background-color:#7A991A;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <a href="/index.html" target="_blank">jishuchi</a>
  26. </body>
  27. </html>