কম্পিউটার

CSS এর ভূমিকা :nth-child(n) নির্বাচক


CSS :nth-child(n) নির্বাচক প্রতিটি

এলিমেন্টকে স্টাইল করতে ব্যবহার করুন যা CSS এর সাথে তার পিতামাতার দ্বিতীয় সন্তান। আপনি :nth-child(n) নির্বাচক

বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন

উদাহরণ

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:nth-child(4) {
            background: orange;
            color: white;
         }
      </style>
   </head>
   <body>
      <p>This is demo text 1.</p>
      <p>This is demo text 2.</p>
      <p>This is demo text 3.</p>
      <p>This is demo text 4.</p>
      <p>This is demo text 5.</p>
      <p>This is demo text 6.</p>
   </body>
</html>

  1. CSS এর ভূমিকা:হোভার সিলেক্টর

  2. CSS এর ভূমিকা:ফোকাস নির্বাচক

  3. CSS-এর ভূমিকা :nth-last-of-type(n) নির্বাচক

  4. CSS এর ভূমিকা :nth-last-child(n) নির্বাচক