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

Tạo kiểu liên kết khi di chuột qua bằng CSS

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

Ví dụ

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