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

CSS Child Selector


ใช้ตัวเลือกลูก ถ้าคุณต้องการเลือกองค์ประกอบทั้งหมดที่เป็นลูกขององค์ประกอบที่ระบุ

div > p

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้ CSS Child Selector

<!DOCTYPE html>
<html>
   <head>
      <style>
         div > p {
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <div>
         <p>Para 1 in the div.</p>
         <!-- This is not a Child -->
         <span><p>Para 2 in the div.</p></span>
      </div>
      <p>Para 3 outside the div.</p>
   </body>
</html>

ผลลัพธ์

CSS Child Selector