- [
:nth-childvs:nth-of-type]
:nth-childselect second child of parent:nth-of-typeselect the second that type of parent. Example:
<section>
<h1>Words</h1>
<p>Little</p>
<p>Piggy</p>
</section>
<style>
/* nth-child will select second child of section which is a paragraph. So it _little_ will be red*/
p:nth-child(2) { color: red; }
/* nth-of-type will select second paragraph of section. So it _Piggy_ will be red*/
p:nth-of-type(2) { color: red; }
</style>