Not First Child Css Selector Code Example


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

Example 2: other children than first css


div ul:nth-child(n+2) {
background-color: #900;
}

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools