【发布时间】:2021-09-18 06:17:00
【问题描述】:
有一个带有“about”类的链接“a”项目,我正在尝试创建一种访问过的紫色样式。但由于某种原因,它不是“已访问”样式的样式。谢谢!
**html**
<header>
<a href="about.html" class="about">ABOUT</a>
</header>
**css**
a {
font-family: Gothic A1;
font-size: 18px;
text-decoration: none;
color: #000000;
}
about a:visited {
color: purple;
}
**hover animation**
a.about {
position: relative;
}
a.about:before {
content: '';
position: absolute;
width: 0;
height: 1px;
bottom: -2px;
left: 0px;
background: black;
visibility: hidden;
transition: all 0.3s ease-in-out;
}
a.about:hover:before {
visibility: visible;
width: 100%;
}
【问题讨论】: