CSS访问链接

时间:2018-08-05 13:30:01

标签: css

enter image description here我访问过的CSS链接功能有问题。

以下是要求:

  • 链接应为黑色
  • 已访问的链接,应为银色

我尝试了几种变体,但是它们没有用。 这是我的最后一个:

这是我的HTML代码:

.heading a {
  text-decoration: none;
  color: black;
}

.heading a:visited {
  color: silver;
}
<section class="heading tm-content-box">
  <div class="pad">
    <h2> WE ARE...</h2>
    <ol>
      <li><a href="index.html" class="text">Designers</a></li>
      <li><a href="index.html">Consultants</a></li>
      <li><a href="#" class="text">Strategists</a></li>
      <li><a href="#">Engineers</a></li>
      <li><a href="#">Developers</a></li>
      <li><a href="#">Architects</a></li>
      <li><a href="#">Analysts</a></li>
    </ol>
  </div>
</section>

0 个答案:

没有答案