I want to apply a particular style for child div from 4 to n-1 .i was able to do from 4 to n , but could not exclude the last div
here is the jsfiddle http://jsfiddle.net/8WLXX/
.container div:nth-child(n+4) { background: red; }
All I want is exclude last div also.
You can do this:
.container div:nth-child(n+4):not(:last-child) {
background: red;
}
Fiddle Demo
Simply add :not(:last-child)
to the selector:
.container div:nth-child(n+4):not(:last-child)
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