<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
/*伪类选择器*/
/*想要运行效果 必须用lvha*/
/*设置超链接样式的步骤:
确定页面所有链接样式是否相同,否则分开定义
先定义四个状态有的样式*/
/*link 链接未激活*/
a:link{
color: red;
}
/*hover 鼠标悬浮状态*/
a:hover{
color: yellow;
}
/*visited 链接已访问状态*/
a:visited{
color: green;
}
/*active 按下 a标签的时候的颜色*/
a:active{
color: blue;
}
</style>
<title>超链接</title>
</head>
<body>
<a href="http://www.bilibili.com/">bilibili</a>
<a href="www.baidu.com">baidu</a>
</body>
</html>