“Selecione até CSS Child” Respostas de código

CSS estranho, mesmo criança

tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
Alive Albatross

NTH-Child () CSS

/* Selects the second <li> element in a list */
li:nth-child(2) { 
  color: lime;
}

/* Selects every fourth element
   among any group of siblings */
:nth-child(4n) {
  color: lime;
}
Repulsive Rhinoceros

Selecione até CSS Child

li:nth-child(even) { /* Selects only even elements */
    color: green;   
}
Giamblers

Selecione CSS Odd Child

li:nth-child(odd) { /* Selects only odd elements */
    color: green;   
}
Giamblers

Respostas semelhantes a “Selecione até CSS Child”

Perguntas semelhantes a “Selecione até CSS Child”

Mais respostas relacionadas para “Selecione até CSS Child” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código