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

Vai trò của CSS:hover Selector

Sử dụng công cụ chọn CSS:hover để tạo kiểu cho các liên kết khi di chuột qua bằng CSS. Bạn có thể thử chạy mã sau để triển khai:bộ chọn di chuột -

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         a:hover {
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <a href = "https://www.qries.com">Qries</a>
      <p>Keep the mouse cursor on the above link and see the effect.</p>
   </body>
</html>