Computer >> Máy Tính >  >> Lập trình >> CSS

Cách chọn các phần tử có thuộc tính và giá trị được chỉ định bằng CSS

Sử dụng công cụ chọn [thuộc tính =”value”] để chọn các phần tử có thuộc tính và giá trị được chỉ định.

Bạn có thể thử chạy đoạn mã sau để triển khai Bộ chọn CSS [thuộc tính ="value"]. Ở đây, chúng tôi đã coi thuộc tính là rel ,

Ví dụ:

<!DOCTYPE html>
<html>
   <head>
      <style>
      a[rel = nofollow] {
         border: 3px solid blue;
      }
      </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>