কম্পিউটার

CSS এর ভূমিকা:ঐচ্ছিক নির্বাচক


কোন "প্রয়োজনীয়" বৈশিষ্ট্য ছাড়াই উপাদানগুলিকে স্টাইল করতে CSS :ঐচ্ছিক নির্বাচক ব্যবহার করুন

উদাহরণ

আপনি :ঐচ্ছিক নির্বাচক:

বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন
<!DOCTYPE html>
<html>
   <head>
      <style>
         input:optional {
            background-color: blue;
         }
      </style>
   </head>
   <body>
      <form>
         Subject: <input type = "text" name = "subject"><br>
         Student: <input type = "text" name = "student" required><br>
      </form>
   </body>
</html>

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

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

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

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