CSS :hover 选择器的作用


使用 CSS :hover 选择器通过 CSS 鼠标滑过时设置链接的样式。您可以尝试运行以下代码来实现 :hover 选择器 −

示例

实时演示

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

更新于: 30-06-2020

266 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告