“Nth Child CSS Tricks” Kod odpowiedzi

Nth Child CSS Tricks

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

n. typu na co 4

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

Wybierz pierwsze 5 dzieci CSS

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

Odpowiedzi podobne do “Nth Child CSS Tricks”

Pytania podobne do “Nth Child CSS Tricks”

Więcej pokrewnych odpowiedzi na “Nth Child CSS Tricks” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu