কম্পিউটার

CSS এর ভূমিকা:টার্গেট সিলেক্টর


CSS এর সাথে সক্রিয় HTML অ্যাঙ্কর হাইলাইট করতে CSS :target সিলেক্টর ব্যবহার করুন।

উদাহরণ

:টার্গেট সিলেক্টর

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

<!DOCTYPE html>
<html>
   <head>
      <style>
         :target {
            border: 2px solid #D4D4D4;
            background-color: orange;
            color: white;
         }
      </style>
   </head>
   <body>
      <p>Click any of the subject below.</p>
      <p><a href = "#tut1">Maths</a></p>
      <p><a href = "#tut2">Java</a></p>
      <p><a href = "#tut3">C++</a></p>
      <p><a href = "#tut4">C</a></p>
      <p>This is demo text.</p>
      <p>This is demo text.</p>
      <p>This is demo text.</p>
      <p>This is demo text.</p>
      <p>This is demo text.</p>
      <p id = "tut1"><b>Maths Tutorial</b></p>
      <p id = "tut2"><b>Java Tutorial</b></p>
      <p id = "tut3"><b>C++ Tutorial</b></p>
      <p id = "tut4"><b>C Tutorial</b></p>
   </body>
</html>

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

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

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

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