现在的位置: 首页 > 综合 > 正文

29-超链接样式的设置(link hover visited)

2013年08月03日 ⁄ 综合 ⁄ 共 511字 ⁄ 字号 评论关闭
<html>
 <head>
  <title> New Document </title>
  <meta http-equiv="content-type" content="text/html;charset=utf-8">
<style>
a:link{
 color:black;
 text-decoration:none;
 font-size:24px;
}
a:hover{
 text-decoration:underline;
 font-size:40px;
 color:green;
}
a:visited{
 color:red;
}
</style>
 </head>

 <body>
 <a href="http://www.baidu.com">百度</a>
 <a href="http://www.baidu.com">百度</a>
 <a href="http://www.baidu.com">百度</a>
 <a href="http://www.baidu.com">百度</a>
 <a href="http://www.baidu.com">百度</a>
 </body>
</html>

正常状态的超链接:

鼠标移动上去的超链接:

鼠标点击之后的超链接:因为有缓存,所以查看到的是红色的。

抱歉!评论已关闭.