JSFiddle - React, Tailwind, and code Playground

by danield770

HTML

<!DOCTYPE html> <html> <head> </head> <body> <p class="a">The first paragraph.</p> <p class="a">The second paragraph.</p> <p class="a">The third paragraph.</p> <p class="a">The fourth paragraph.</p> <p class="a">The fifth paragraph.</p> <p class="a">The sixth paragraph.</p> <p class="a">The seventh paragraph.</p> <p class="a">The eight paragraph.</p> <p class="a">The ninth paragraph.</p> <p class="a">The seventh paragraph.</p> <p class="a">The eight paragraph.</p> <p class="a">The ninth paragraph.</p> </body> </html>

CSS

p:nth-child(3n+2),p:nth-child(3)
{
    background: #ccc;
}