“CSS nicht das erste Kind” Code-Antworten

CSS nicht das erste Kind

.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 */
}
Carnivorous Flamingo

Li nicht das erste Kind

div ul:not(:first-child){
    background-color: #900;
}
Indonesia People

andere Kinder als das erste CSS

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

Ähnliche Antworten wie “CSS nicht das erste Kind”

Fragen ähnlich wie “CSS nicht das erste Kind”

Weitere verwandte Antworten zu “CSS nicht das erste Kind” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen