“Drugie dziecko CSS” Kod odpowiedzi

CSS dziwne nawet dziecko

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

Pierwsze dziecko CSS

:first-child {
	//styles here
}

:nth-child(1) { //the benefit of this is you can do it for 2nd, 3rd etc...
	//styles here 
}
Carnivorous Flamingo

Drugie dziecko CSS

.YourElementsClass:nth-child(2) {
  /* your styles */
}
5alidshammout

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

Dziecko CSS

  p:nth-child(2)
 	{     
 		background: red;
 	}
Wide-eyed Wildebeest

Wybierz nawet dziecko CSS

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

Odpowiedzi podobne do “Drugie dziecko CSS”

Pytania podobne do “Drugie dziecko CSS”

Więcej pokrewnych odpowiedzi na “Drugie dziecko CSS” w CSS

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

Przeglądaj inne języki kodu