Not First Child Pseudo Selector Code Example


Example: 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 */
}

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy