CSS3选择器中的儿子选择器与序选择器
<!DOCTYPE html>
<html lang="en">
<!--css3选择器-->
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
/*儿子选择器*/
div>p{
color: red;
}
/*序选择器*/
div ul li:first-child{
color: red;
}
</style>
</head>
<body>
<!--儿子选择器 IE7开始兼容,可以用类选择器完成同样功能-->
<div>
<ul>
<li>
<p>我的颜色</p>
</li>
</ul>
<p>我的颜色</p>
</div>
<!--序选择器-->
<div>
<ul>
<li>郑州</li>
<li>郑州</li>
<li>郑州</li>
</ul>
</div>
</body>
</html>