Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ความแตกต่างระหว่าง 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 ที่มีทั้งตัวเลือกที่ตรงกับองค์ประกอบเดียวกัน div ของคุณ:not(:first-of-type) จะได้รับการจัดลำดับความสำคัญเนื่องจาก:first-of-type pseudo-class