Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css not first child

.block:not(:first-child) {
    background-color: #990000;
}

//if you need to support legacy browsers then follow the below solution

.block {
    background-color: #990000;  /* applies to every ul */
}

.block:first-child {
    background-color: transparent; /* limits the scope of the previous rule */
}
 
PREVIOUS NEXT
Tagged: #css #child
ADD COMMENT
Topic
Name
1+8 =