Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

บทบาทของ CSS :hover Selector


ใช้ CSS :hover selector เพื่อจัดรูปแบบลิงก์บนเมาส์ด้วย CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน :hover selector -

ตัวอย่าง

<!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>