xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>动态锚点伪类的示例</title>
<style>
a:link {
color: blue;
}
a:visited {
text-decoration: none;
}
a:hover {
color: red;
}
a:active {
color: gray;
}
a:focus {
color: yellow;
}
</style>
</head>
<body>
<p>Visit <a href="https://www.div.cn" target="_blank">www.div.cn</a></p>
</body>
</html>