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.
Simply add :not(:last-child)
to the selector:
.container div:nth-child(n+4):not(:last-child)
You can do this:
.container div:nth-child(n+4):not(:last-child) {
background: red;
}
Fiddle Demo
You can also do it by using .container div:nth-child(n+4):last-child
For Instance,
.container div:nth-child(n+4):last-child{
background:none;
}
WORKING DEMO
Hope this helps.