需要设置<h1>链接的颜色

Bra*_*rad 1 html css

这是用于设置链接的h1文本颜色的css:

.nav-left h1 a,
a:visited {
  color: #055830;
}
Run Code Online (Sandbox Code Playgroud)
<div class="nav-left">
  <h1><a href="/index.php/housing/">Housing</a></h1>
</div>
Run Code Online (Sandbox Code Playgroud)

看起来它看起来不合适,任何帮助都表示赞赏.

Too*_*the 8

关于什么:

.nav-left h1 a:visited{
    color:#055830;
}
Run Code Online (Sandbox Code Playgroud)


小智 5

如果您希望未访问的链接的颜色相同,您还需要为其添加特定的选择器

.nav-left h1 a:link, .nav-left h1 a:visited {
    color:#055830;
}
Run Code Online (Sandbox Code Playgroud)