কম্পিউটার

CSS [attribute=value] নির্বাচকের ভূমিকা


একটি নির্দিষ্ট বৈশিষ্ট্য এবং মান সহ উপাদান নির্বাচন করতে [attribute="value"] নির্বাচক ব্যবহার করুন৷

আপনি CSS [attribute="value"] সিলেক্টর বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন। এখানে, আমরা বৈশিষ্ট্যটিকে rel, হিসাবে বিবেচনা করেছি

উদাহরণ

<!DOCTYPE html>
<html>
   <head>
      <style>
         a[rel = nofollow] {
            border: 3px solid orange;
         }
      </style>
   </head>
   <body>
      <a href = "https://qries.com/What-is-Uber-s-business-model-and-how-does-it-compare-with-Ola-s-model-in-India" rel="nofollow">Uber's Business Model</a><br><br>
      <a href = "https://www.qries.com/How-does-share-market-work-in-India" rel="noreferrer">Share Market</a>
   </body>
</html>

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

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

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

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