I'm trying to select every 3rd section
tag but starting from the fourth. So the bold elements below would indicate those that I would like to select:
I've tried the following code but it doesn't appear to be working
section:nth-child(3n+1)
If you want to start from the 4th element use +4
not +1
section:nth-child(3n+4) {
color: red;
}
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
<section>Section</section>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With