为啥li前面不用加类选择器,初学者 问题比较弱智呀
<!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">
/*在此定义相关样式,控制列表的显示形式*/
li{
width:50px;
height:30px;
line-height:30px;
text-align:center;
float:left;
list-style-type:none;
}
a{
display:block;
}
a:link,a:visited{
color:red;
text-decoration:none;
}
a:hover,a:active{
color:blue;
text-decoration:none;
background-color:green;
}
</style>
</head>
<body>
<h3>课程难度</h3>
<ul>
<li><a href="#">全部</a></li>
<li><a href="#">初级</a></li>
<li><a href="#">中级</a></li>
<li><a href="#">高级</a></li>
</ul>
<!--在此制作一个无序列表-->
</body>
</html>
还有就是text-decoration,text_decoration,这两种写法 什么时候该用哪种啊