a标签 CSS样式 鼠标悬停、点击、点击后、选定

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css">
a:link { color: #06F; text-decoration: none; }/* 未访问的链接 */
a:visited { color: #999; text-decoration: line-through; } /* 已访问的链接 */
a:hover { color: #F00; text-decoration: underline; }/* 鼠标移动到链接上 */
a:active { color: #F0F; } /* 选定的链接 */
</style>
</head>
<body>
<p><a href="#">这里是链接</a></p>
<p><a href="10.html">这里也是链接</a></p>
</body>


猜你喜欢

转载自blog.csdn.net/changeable0127/article/details/80915345