使用 CSS 设置所有未访问链接的样式


要设置所有未访问链接的样式,请使用 CSS :link 选择器。您可以尝试运行以下代码来实现 :link 选择器

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         a:link {
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <a href = "https://www.example.com">Demo Website</a>https://www.example.com/
   </body>
</html>

更新于:2020 年 6 月 30 日

619 次查看

开启您的 职业生涯

完成课程以获得认证

开始学习
广告