1. 程式人生 > >CSS後代選擇器和子元素選擇器

CSS後代選擇器和子元素選擇器

後代元素:該節點所有的內部節點,CSS例如 h1 strong{color:#0F0;}

子元素:該節點的第一層內部節點,CSS例如 h1 > strong {color:red;}  (IE6不支援!)

兩種選擇器具有相同的優先順序,即哪一個放在後面的就其作用

<style>
h1 strong{color:#0F0;}
h1 > strong {color:red;}
</style>
<h1>This is <strong>very</strong> <strong>very</strong> important.</h1>
<h1>This is <em>really <strong>very</strong></em> important.</h1>