<td>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
</td>
I want to get all p
s except the first 3.
I am doing it like so
td p:not(:nth-child(1),:nth-child(2),:nth-child(3))
But what if I want all p
s except first 20? Will I have to write manually like I did above?