为什么我.nav1 a:hover,.nav1 a:active{}里的 background-color:#BE3948;没有用?我直接改了ul标签的才成功的
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>3.1页面头部制作练习题</title>
<style type="text/css">
/*在此定义相关样式,控制列表的显示形式*/
.nav1 li{
list-style-type: none;
float:left;
width:50px;
height:30px;
text-align:center;
}
.nav1 a:link,.nav1 a:visited{
text-decoration: none;
color: #000;
font-size: 16px;
font-family: "微软雅黑";
}
.nav1 a:hover,.nav1 a:active{
text-decoration: none;
color: #FF0;
font-size: 16px;
font-family: "微软雅黑";
background-color:#BE3948;
display:block;
}
ul a:hover,a:active{
background-color:#BE3948;
display:block;
}
</style>
</head>
<body>
<h3>课程难度</h3>
<!--在此制作一个无序列表-->
<div>
<ul class="nav1">
<li><a href="#" >全部</a></li>
<li><a href="#" >初级</a></li>
<li><a href="#" >中级</a></li>
<li><a href="#" >高级</a></li>
</ul>
</div>
</body>
</html>