CSS选择器:子选择符号

<html>
<head>

<style type="text/css">
 .class>h2{color:red}
</style>

</head>

<body>

  <div class='class'>
   <h2>区域标题</h2>
   <div>
      <h2>文章标题</h2>
   </div>
   <div>
      <h2>文章标题</h2>
   </div>
  </div>

</body>

</html>

 

效果:

 

posted @ 2017-04-17 16:05  jiafeng  阅读(648)  评论(0编辑  收藏  举报