使用CSS设置活动链接的样式

要设置活动链接的样式,请使用CSS:active选择器。您可以尝试运行以下代码来设置活动链接的样式

示例

<!DOCTYPE html>
<html>
   <head>
      <style>
         a:active {
            background-color: green;
         }
      </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>