“CSS no primer niño” Código de respuesta

CSS no primer niño

.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 no primer hijo

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

Otros niños que el primer CSS

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

Respuestas similares a “CSS no primer niño”

Preguntas similares a “CSS no primer niño”

Más respuestas relacionadas con “CSS no primer niño” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código