Vyberte aj dieťa css

Príklady kódu

14
0

nth-dieťa () 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;
}
9
0

css nepárne dieťa

tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
4
0

vyberte aj dieťa css

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

vyberte CSS odd child

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

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................