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

เลือกองค์ประกอบ

ทั้งหมดที่วางไว้หลังองค์ประกอบ

ด้วย CSS


ใช้องค์ประกอบ+องค์ประกอบ t ตัวเลือกเพื่อเลือกองค์ประกอบที่วางหลังจากองค์ประกอบที่ระบุครั้งแรก คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div + p {
            color: white;
            background-color: blue;
         }
      </style>
   </head>
   <body>
      <h1>Demo Website</h1>
      <h2>Fruits</h2>
      <div>
         <p>This is demo text.</p>
      </div>
      <p>Fruits are good for health.</p>
      <p>Fruits makes you healthy.</p>
   </body>
</html>