CSS :link 选择器

CSS :link 伪类选择器是用来选中元素当中的链接。它将会选中所有尚未访问的链接,包括那些已经给定了其他伪类选择器的链接(例如:hover选择器,:active选择器,:visited选择器)。


实例

选择未被访问的链接,并设置其样式:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. a:link
  6. {
  7. background-color:yellow;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <a href="https://cankaoshouce.com">cankaoshouce</a>
  13. <a href="http://www.google.com">Google</a>
  14. <a href="http://www.wikipedia.org">Wikipedia</a>
  15. <p><b>备注:</b>:link 选择器为未被访问过的链接设置样式。</p>
  16. </body>
  17. </html>

浏览器支持

选择器
:link4.07.02.03.19.6

定义和用法

:link 选择器用于选取未被访问的链接。

注释::link 选择器不会设置已经访问过的链接的样式。

提示:请使用 :visited 选择器对指向已访问页面的链接设置样式,:hover 选择器用于设置鼠标指针浮动到链接上时的样式,:active 选择器用于设置点击链接时的样式。


更多实例

例子 1

选择未访问、已访问、悬浮和活动链接,并设置它们的样式:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. /* 未访问的链接 */
  6. a:link {
  7. color: green;
  8. }
  9. /* 访问过的链接 */
  10. a:visited {
  11. color: green;
  12. }
  13. /* 鼠标悬停链接 */
  14. a:hover {
  15. color: red;
  16. }
  17. /* 选取的链接 */
  18. a:active {
  19. color: yellow;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <p>鼠标悬停并单击链接: <a href="https://cankaoshouce.com">cankaoshouce.com</a></p>
  25. </body>
  26. </html>
例子 2

为链接设置不同的样式:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. a.ex1:hover, a.ex1:active {color: red;}
  6. a.ex2:hover, a.ex2:active {font-size: 150%;}
  7. a.ex3:hover, a.ex3:active {background: red;}
  8. a.ex4:hover, a.ex4:active {font-family: monospace;}
  9. a.ex5:visited, a.ex5:link {text-decoration: none;}
  10. a.ex5:hover, a.ex5:active {text-decoration: underline;}
  11. </style>
  12. </head>
  13. <body>
  14. <p>将鼠标移到链接上可以看到它们更改布局。</p>
  15. <p><a class="ex1" href="/css/css-course.html">这个链接改变颜色。</a></p>
  16. <p><a class="ex2" href="/css/css-course.html">这个链接改变字体大小。</a></p>
  17. <p><a class="ex3" href="/css/css-course.html">这个链接改变背景颜色。</a></p>
  18. <p><a class="ex4" href="/css/css-course.html">这个链接改变字体。</a></p>
  19. <p><a class="ex5" href="/css/css-course.html">这个链接改变文本装饰。</a></p>
  20. </body>
  21. </html>

相关页面

CSS 教程:CSS 链接

CSS 教程:CSS 伪类

分类导航