div~div 和 div:not(:first-of-type) 的区别?
两者在匹配元素方面相同。让我们来看一个例子
<section> <div></div> <!-- div:first-child or div:first-of-type --> <div></div> <!-- div+div or div~div or div:nth-of-type(2) --> <p></p> <div></div> <!-- div+p+div or div~div or div:nth-of-type(3), but not div+div --> </section> <section> <h1></h1> <!-- h1:first-child --> <div></div> <!-- div:first-of-type or div:nth-child(2) --> <div></div> <!-- div~div or div:nth-of-type(2) or div:nth-child(3) --> </section>
如果您有 CSS 规则,并且两个选择器都匹配相同的元素,那么由于 :first-of-type 伪类,您的 div:not(:first-of-type) 将具有优先级。
广告