
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>伪类选择器</title>
<style>
a{
text-decoration: none;
}
a:link{
color: black;
}
a:visited{
color: blue;
}
a:hover{
color: red;
}
a:active{
color: yellow;
}
</style>
</head>
<body>
<a href="http://www.baidu.com" target="_blank">百度一下</a>
</body>
</html>
博客围绕前端开发展开,涉及HTML和CSS相关内容,HTML用于构建网页结构,CSS负责网页样式设计,二者是前端开发的重要基础技术。
1011

被折叠的 条评论
为什么被折叠?



