-3
例如p:last-child selector和p:last-of-type selector之間的區別是什麼?last-child/last-of-type和[attr | = value]/[attr^= value]
也就是例如P [類|「你好」]之間的區別和P [^類=「你好」]
例如p:last-child selector和p:last-of-type selector之間的區別是什麼?last-child/last-of-type和[attr | = value]/[attr^= value]
也就是例如P [類|「你好」]之間的區別和P [^類=「你好」]
正如你所期望p:last-child
的最後一個子匹配和p:last-of-type
最後一個元素相匹配的類型。
p[class|"hello"]
和p[class^="hello"]
之間的區別在於,前者不是有效的選擇器,而後者是。
此外,請參閱您的問題的評論。
你可以在w3schools本身看到這些。 –
RTFM:http://www.w3.org/TR/selectors/#last-child-pseudo –