<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>伪类</title>
<style>
/* 控制链接未被访问过后 */
a:link {
color: red;
}
/* 链接被访问之后 */
a:visited {
color: yellow;
}
/* 链接被激活的时候触发,鼠标按下去的时候 */
a:active {
color: violet;
}
/* 鼠标hover悬浮的时候 */
a:hover {
color: turquoise;
}
</style>
</head>
<body>
<a href="https://www.baidu.com">百度</a>
</body>
</html>