84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
2017.07.07 12个月 2017.07.08
2017.07.07
12个月
2017.07.08
我想透過
item2 .tcc:nth-of-type(2) .icon{}
為第二個tcc類別名稱的元素加入樣式,為啥會無效的。後來想了一下,nth-of-type這類偽類選擇器前都是要元素標籤的嗎?網路上的教學好像都是,不能是類別名稱嗎?
nth-of-type
因為
且不說nth-of-type需不需要明確指定標籤,:nth-of-type(n)是指選擇父元素中具有指定類型的第n 個子元素,而你的第二個.tcc是.item2的第3 個子元素,而不是第2 個,或許你應該寫成.item2 .tcc:nth-of-type(3) .icon {}
:nth-of-type(n)
.tcc
.item2
.item2 .tcc:nth-of-type(3) .icon {}
替換為
item2 .tcc:nth-child(3) .icon{}
因為
也是 p 所以 第二個 tcc 其實是 nth-of-type(3)且不說
nth-of-type
需不需要明確指定標籤,:nth-of-type(n)
是指選擇父元素中具有指定類型的第n 個子元素,而你的第二個.tcc
是.item2
的第3 個子元素,而不是第2 個,或許你應該寫成.item2 .tcc:nth-of-type(3) .icon {}
替換為