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

บทบาทของ CSS :last-child Selector


ใช้ CSS :last-child selector เพื่อจัดรูปแบบทุก

องค์ประกอบที่เป็นลูกสุดท้ายของพาเรนต์ คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน :last-child selector

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:last-child {
            background: orange;
         }
      </style>
   </head>
   <body>
      <p>This is demo text1.</p>
      <p>This is demo text2.</p>
      <p>This is demo text3.</p>
   </body>
</html>