CSS:active 选择器角色


使用 CSS :active 选择器来设置活动链接的样式。你可以尝试运行以下代码来实现 :active 选择器 −

示例

实际演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         a:active {
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <a href = "https://qries.com">Welcome to Qries</a>
      <p>Click on the above link to see the effect.</p>
   </body>
</html>

更新于: 2020 年 6 月 30 日

217 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始学习
广告