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

Sử dụng Bộ chọn [thuộc tính] CSS

Sử dụng công cụ chọn [thuộc tính] để chọn các phần tử có thuộc tính, ví dụ:thuộc tính alt hoặc thuộc tính mục tiêu, v.v.

Bạn có thể thử chạy mã sau để triển khai bộ chọn CSS [thuộc tính],

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         img[alt] {
            border: 3px solid orange;
         }
      </style>
   </head>
   <body>
      <img src = "https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg"
         height="200" width="200">
      <img src = "https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg"
         height = "200" width="200" alt = "Tutorials Library">
   </body>
</html>