CSS 链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 链接相关的知识,希望对你有一定的参考价值。
链接的四种状态:
- a:link - 普通的、未被访问的链接
- a:visited - 用户已访问的链接
- a:hover - 鼠标指针位于链接的上方
- a:active - 链接被点击的时刻
当为链接的不同状态设置样式时,请按照以下次序规则:
- a:hover 必须位于 a:link 和 a:visited 之后
- a:active 必须位于 a:hover 之后
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 a:link {color:#FF0000;} /* 未被访问的链接 */
6 a:visited {color:#00FF00;} /* 已被访问的链接 */
7 a:hover {color:#FF00FF;} /* 鼠标指针移动到链接上 */
8 a:active {color:#0000FF;} /* 正在被点击的链接 */
9 </style>
10 </head>
11
12 <body>
13 <p><b><a href="/index.html" target="_blank">这是一个链接</a></b></p>
14 <p><b>注释:</b>为了使定义生效,a:hover 必须位于 a:link 和 a:visited 之后!!</p>
15 <p><b>注释:</b>为了使定义生效,a:active 必须位于 a:hover 之后!!</p>
16 </body>
17 </html>
文本修饰
text-decoration 属性大多用于去掉链接中的下划线:
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 a:link {text-decoration:none;} /* 未被访问的链接 */
6 a:visited {text-decoration:none;} /* 已被访问的链接 */
7 a:hover {text-decoration:underline;} /* 鼠标指针移动到链接上 */
8 a:active {text-decoration:underline;} /* 正在被点击的链接 */
9 </style>
10 </head>
11
12 <body>
13 <p><b><a href="/index.html" target="_blank">这是一个链接</a></b></p>
14 <p><b>注释:</b>为了使定义生效,a:hover 必须位于 a:link 和 a:visited 之后!!</p>
15 <p><b>注释:</b>为了使定义生效,a:active 必须位于 a:hover 之后!!</p>
16 </body>
17 </html>
背景色
background-color 属性规定链接的背景色:
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 a:link {background-color:#B2FF99;} /* 未被访问的链接 */
6 a:visited {background-color:#FFFF85;} /* 已被访问的链接 */
7 a:hover {background-color:#FF704D;} /* 鼠标指针移动到链接上 */
8 a:active {background-color:#FF704D;} /* 正在被点击的链接 */
9 </style>
10 </head>
11
12 <body>
13 <p><b><a href="/index.html" target="_blank">W3School</a></b></p>
14 <p><b><a href="http://wwf.panda.org/" target="_blank">WWF</a></b></p>
15
16 <p><b>注释:</b>为了使定义生效,a:hover 必须位于 a:link 和 a:visited 之后!!</p>
17 <p><b>注释:</b>为了使定义生效,a:active 必须位于 a:hover 之后!!</p>
18 </body>
19 </html>
以上是关于CSS 链接的主要内容,如果未能解决你的问题,请参考以下文章