我認爲後者的項目,body>:not(element)和:not(body> element)有什麼區別?
:not(body> element)
賬戶是在body標籤的所有「元素」的項目。這是不是聯繫到
body >:not(element)
?? ??
我認爲後者的項目,body>:not(element)和:not(body> element)有什麼區別?
:not(body> element)
賬戶是在body標籤的所有「元素」的項目。這是不是聯繫到
body >:not(element)
?? ??
:not(body> element)
無效因爲:not
只接受simple selectors,所以它們重新不等於
body >:not(element)
選擇是除<element>
元件體的所有子元素。
:not(body> element)
無效的CSS,因爲:not()
只需要simple selector。如果它是有效的,它將選擇其他人做的所有事情,但也包括每個不是身體的孩子的元素(例如身體元素本身和身體元素的任何孫子)。
主要區別在於:not(body> element)
無效。
:not(selector)
只接受simple selectors。
第一個選擇器是不正確的,所以沒有什麼區別需要擔心。 – 2015-02-09 16:44:44