“n -й ребенок Javascript” Ответ

CSS Odd ровный ребенок

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

Как получить n -й дочерний домик JS

 //method one 
  var c = document.getElementById("myDIV").childNodes;
  c[1].style.backgroundColor = "yellow";//first child
  c[2].style.backgroundColor = "red";//second child
  c[-1].style.backgroundColor = "green";//last child
  c[-2].style.backgroundColor = "blue";//secound last child
//method two
 let nth-child = document.querySeletorAll('myDiv:nth-child(n)');//gives nth child 
uzii

CSS N -й ребенок


:nth-child(1) { /*advantage is you can do it for 2nd, 3rd etc. */
	/* styles go here*/  
}
Batman

JavaScript Получите 2 -й дочерний элемент

//you can use the css nth-child property like this:
var second-child = document.querySeletorAll('[your element name]:nth-child(2)');
Wicked Warbler

n -й ребенок Javascript

2
3
4
5
6
7
8
9

0

0
0
Average Alpaca

Ответы похожие на “n -й ребенок Javascript”

Вопросы похожие на “n -й ребенок Javascript”

Больше похожих ответов на “n -й ребенок Javascript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования