我试图在悬停以在链接左侧显示图像时获取链接。我几乎已经实现了我想要的,但我遇到了 html 问题。
试图让我的 redtext 类出现在具有翻转效果的链接的反斜杠上。
有没有办法解决这个问题或实现这一目标的更好方法?Question中的链接是yaya Photography
CSS
.thumbnail{
position: relative;
z-index: 0;
}
.thumbnail:hover{
background-color: transparent;
z-index: 50;
}
.thumbnail span{
position: absolute;
left: -1000px;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{
border-width: 0;
padding: 0px;
}
.thumbnail:hover span
visibility: visible;
top: -25px;
left: -125px;
}
这是我正在努力工作的 html
<a class="thumbnail" href="#accordion"><h3><span class="redtext">/</span> yaya Photography</h3><span><img src="images/yaya/yayathumb.png" /></span></a>
提前致谢!