代码片:
<!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>
/*
link标签:设置未访问之前的颜色,效果跟直接设置a标签颜色相同
visited标签:只能设置字体颜色!!!!
hover标签:用于设置当鼠标经过或悬停时链接文本的样式
active标签:鼠标点击(按住不放)的时候该链接文本的样式
*/
a{
color:cadetblue;
}
a:visited{
color: #333333;
}
a:hover{
background-color: skyblue;
}
a:active{
width: 50px;
height: 50px;
background-color: tomato;
}
</style>
</head>
<body>
<a href="https://www.baidu.com/" target="_blank">百度</a>
<a href="https://zhidao.baidu.com" target="_blank">百度知道</a>
<a href="https://wenku.baidu.com" target="_blank">百度文库</a>
</body>
</html>