a伪标签

来源:互联网 发布:nanosleep windows 编辑:程序博客网 时间:2024/05/16 04:40

<!DOCTYPE html>
<html>


<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
a:link {
font-size: 14pt;
text-decoration: underline;
color: brown;
}
a:visited {
font-size: 14pt;
text-decoration: underline;
color: red;
}
a:hover {
font-size: 14pt;
text-decoration: underline;
color: blueviolet;
}

a:active {
font-size: 14pt;
text-decoration: underline;
color: chartreuse;
}



</style>
</head>


<body>
<!--<a href="http://www.baidu.com" target="_blank">visited</a>-->
<a href="#" >visited</a>
</body>


</html>
原创粉丝点击