<body>
<h1>伪类选择器演示</h1>
<a href="#">小猪佩奇</a>
</body>
/* 没有选中的连接 */
a:link {
/* 把颜色改成黑色 */
color: #333333;
/* 把连接的下划线去掉 */
text-decoration: none;
}
/* 选中的过连接 */
a:visited {
color: orange;
}
/* 鼠标经过的连接设置成蓝色,不管这个连接有没有已经被点过 */
a:hover {
color: skyblue;
}
/* 点击按钮,按下没有松开 */
a:active {
color: green;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.