3.8动态伪类选择器

72 阅读1分钟
<!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>Document</title>
	<style>
		/* 动态伪类选择器 未访问 link 访问过 visited 悬浮 hover 鼠标按下active
			love hate
		*/
		/* 未访问a标签样式 */
		a:link{
			color: blue;
		}
		/* 已经访问过 */
		a:visited{
			color: red;
		}
		/* 鼠标悬浮 */
		a:hover{
			color: pink;
		}
		/* 鼠标按下 */
		a:active{
			color: cyan;
		}
	</style>
</head>
<body>
	<a href="https://www.baidu.com">百度一下,你就知道</a>
</body>
</html>