CSS之a链接标签样式

来源:互联网 发布:淘宝抢券软件 编辑:程序博客网 时间:2024/05/21 19:32
 <style type="text/css">     a{        font-family: Verdana,sans-serif;        font-weight: bold;        text-decoration: none;     }        a:link{            color:black;/*链接未被访问时的样式*/        }        a:visited{            color: green;/*链接被访问过且存在于浏览器的内存中的超链接的样式*/        }        a:hover{            color:red;/*鼠标停留在某个超链接上的样式*/         }        a:active{            color: blue;/*鼠标点击超链接但并未被释放时的超链接的样式*/        }     </style>
 <a href="http://wwww.baidu.com">百度</a>  <a href="http://wwww.taobao.com">淘宝</a><!--链接到电子邮件的地址--><a href="mailto:770307019@qq.com">发邮件</a>
0 0
原创粉丝点击