<ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> </ul>
li:nth-child(2) {
color:red;
}
选择器:
li:nth-of-type(2){
color:red;
}
显示的效果
这个时候 li:nth-child(2) 与 li:nth-of-type(2) 选择的是同一个 显示的效果是一样的
但............
因为没有选择到任何东西,所有这个时候 li:nth-child(2) 失效了
选择是的 第二个li 元素 这个时候就看出来 nth-child 与 nth-of-type 这两个选择器的区别了