“truques de CSS da Nth Criança” Respostas de código

truques de CSS da Nth Criança

Select Only the Fifth Element

li:nth-child(5) {
    color: green;   
}


Select All But The First Five

li:nth-child(n+6) {
    color: green;   
}


Select Only The First Five

li:nth-child(-n+5) {
    color: green;   
}


Select Every Fourth, Starting At The First

li:nth-child(4n-7) {  /* or 4n+1 */
    color: green;   
}




Select Only Odd or Even

li:nth-child(odd) {
    color: green;   
}

li:nth-child(even) {
    color: green;   
}


Select The Last Element

li:last-child {
    color: green;
}


Select the Second to Last Element

li:nth-last-child(2) {
    color: green;
}






Redwan Hussain

nono do tipo para cada 4 após o 1º

:nth-of-type(4n+1)
Confused Cockroach

Selecione os 5 primeiros CSS crianças

li:nth-child(-n+5) {
    color: green;   
}
Giamblers

Respostas semelhantes a “truques de CSS da Nth Criança”

Perguntas semelhantes a “truques de CSS da Nth Criança”

Mais respostas relacionadas para “truques de CSS da Nth Criança” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código