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

Chọn tất cả các phần tử có rel =”nofollow” với 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-smodel-
         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>