HTML/CSS-将鼠标悬停在照片上时显示链接



我想在悬停在图像上时显示我的链接。我编写代码的方式只有当我将鼠标悬停在链接本身(包含在imagediv中(时才会显示链接。有什么想法吗?

.image-text-wrapper {
position: absolute;
top: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
text-align: center;
padding-left: 100px;
padding-right: 100px;
font-size: 1.5em;
}
.image-text-wrapper .xx {
transition: 1s;
font-weight: 600;
margin: 20px;
}
.image-text-wrapper .xx a {
color: transparent !important;
}
.image-text-wrapper a:hover {
color: lightseagreen !important;
text-decoration: none;
}
<div class="portfolio-img-background" style="background-image:url()">
<div class="xx">
<a href="#"> 
Text 
</a>
</div>
</div>

这是一个仅使用CSS 的解决方案

#image{
width:200px;
height:200px;
background:black;
display:flex;
align-items:center;
justify-content: center;
}
#link{
display:none;
}
#image:hover > #link {
display:block;
}
<div id="image" class="portfolio-img-background" style="background-image:url()">
<div class="xx" id="link"> 
<a href="#"> 
Hi!, im a link
</a>
</div>
</div>

可以稍微修改代码底部的这个CSS类以使其工作。

.image-text-wrapper:hover a {
color: lightseagreen !important;
text-decoration: none;
}

最新更新