有一个关于使用 css nth-of-type 选择器http://codepen.io/mnafricano/pen/ltKvy的很好的例子,但是当我自己运行这个例子时,我不能让它工作。有人可以指出使用 nth-of-type 出了什么问题吗
html是
<h1 class='logo'>Google</h1>
,css是
h1.logo span:nth-of-type(1){
color:#0089ab;
}
h1.logo span:nth-of-type(2){
color:#d91821;
}
h1.logo span:nth-of-type(3){
color:#ffac05;
}
h1.logo span:nth-of-type(4){
color:#0089ab;
}
h1.logo span:nth-of-type(5){
color:#88c406;
}
h1.logo span:nth-of-type(6){
color:#d91821;
}