gpt4 book ai didi

html - 一个 :link and a:visited not working. ..?

转载 作者:太空宇宙 更新时间:2023-11-04 13:05:56 24 4
gpt4 key购买 nike

我在 CSS 中的 a:link 和 a:visited 代码无法正常工作。我不确定为什么,这有点奇怪

此外,它实际上与我想要的相反。访问之前,链接是紫色的,访问之后是一样的。

body {
background-color: lightgoldenrodyellow;
font-family: century gothic;
}
header {
display: flex;
justify-content: space-between;
width: 100%;
white-space: nowrap;
}
h1 {
display: inline-block;
font-size: 30px;
text-decoration: underline;
}
nav {
display: inline-block;
}
ul {
color: black;
}
li {
display: inline;
font-size: 30px;
margin-left: 10px;
margin-right: 10px;
}
a:link {
color: black;
}
a:visited {
color: blueviolet;
}
footer {
text-align: center;
margin: 10px;
}
#image1,
#image2 {
border-radius: 6px;
display: block;
margin: auto;
margin-bottom: 80px;
width: 70%;
}
p {
text-align-last: center;
font-family: helvetica, lucida grande, sans-serif;
font-size: 30px;
}
<header>
<nav>
<ul>
<li><a href="#">Home</a>
</li>
<li><a href="#">About</a>
</li>
<li><a href="#">Blog</a>
</li>
<li><a href="#">Event</a>
</li>
<li><a href="#">Gallery</a>
</li>
<li><a href="#">Contact</a>
</li>
</ul>
</nav>
</header>

<p>Your Home Show Your Vision</p>

<img src="p.d.jpg" alt="Your Perspective" id="image1" />

<img src="e7179db2d394aab60672c37700e15612.jpg" alt="Your Perspective" id="image2" />



<footer>Copyright &copy 2017</footer>

最佳答案

visited 选择器匹配 href 链接已经被访问过的所有元素。

你需要设置不同的href like

<nav>
<ul>
<li><a href="https://www.google.co.in/">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="event.html">Event</a></li>
<li><a href="galery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>

body {
background-color: lightgoldenrodyellow;
font-family: century gothic;
}
header {
display: flex;
justify-content: space-between;
width: 100%;
white-space: nowrap;
}
h1 {
display: inline-block;
font-size: 30px;
text-decoration: underline;
}
nav {
display: inline-block;
}
nav ul {
color: black;
}
nav ul li {
display: inline;
font-size: 30px;
margin-left: 10px;
margin-right: 10px;
}
nav ul li a {
color:#000;
}
a:link {
color: black;
}
nav ul li a:visited {
color: blueviolet;
}
footer {
text-align: center;
margin: 10px;
}
#image1, #image2 {
border-radius: 6px;
display: block;
margin: auto;
margin-bottom: 80px;
width: 70%;
}
p {
text-align-last: center;
font-family: helvetica, lucida grande, sans-serif;
font-size: 30px;
}
<header>
<nav>
<ul>
<li><a href="https://www.google.co.in/">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="event.html">Event</a></li>
<li><a href="galery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>

关于html - 一个 :link and a:visited not working. ..?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41787042/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com