3.4 其它
:first-child:元素裡的第一個子元素
:last-child:元素裡的最後一個子元素
:only-child:元素裡只有這個子元素
<section>
<p>段落(符合)</p>
</section>:nth-child(n):第幾個子元素
練習
Last updated
<section>
<p>段落(符合)</p>
</section>Last updated
$("p:first-child").css("color", "red");$("p:last-child").css("color", "red");$("p:only-child").css("color", "red");$("p:nth-child(3)").css("color", "red");