1.block:not(:first-child) {
2 background-color: #990000;
3}
4
5//if you need to support legacy browsers then follow the below solution
6
7.block {
8 background-color: #990000; /* applies to every ul */
9}
10
11.block:first-child {
12 background-color: transparent; /* limits the scope of the previous rule */
13}