您的位置:首页 > 其它

a伪类

2016-03-23 00:00 316 查看
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>a标签伪类</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="布尔教育 http://www.itbool.com" />
<style>
a:link{
color: gray;
}
a:visited{
color: green;
}

a:hover{
color: orange;
}

a:active{
color: black;
}
</style>
</head>
<body>
<p>a标签的四种状态称为伪类 <p>
<p>--link--常规状态----visited点击过的 --hover是指鼠标放上去的状态----active点击的一瞬间(一般不写) </p>
<p>有顺序 LVHA ,,,a link可以简写为a</p>
<div>
<a href="#">空标签</a>
<a href="#">空标签</a>
<a href="#">空标签</a>
<a href="#">空标签</a>
</div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: