我正在做一個頁面,我現在正在搞亂一些圖像,但圖像懸停根本不起作用,我不應該在主圖像背後,因爲它應該是它,但它作爲它的一部分向兩側展示,如果我更正了它在圖像後面的位置,那麼它就在那裏。將鼠標懸停在圖像上
如何隱藏只在懸停時出現?
這裏我發送html和css。
<div class="social-icons">
<a class="ImgOnHover" href="https://pt-pt.facebook.com/"><img src="img\facebook.png" alt="Facebook" height="30" width="30"></a>
</div>
下面是CSS:
.social-icons{
text-align: right;
padding-right: 15px;
padding-top: 10px;
margin-bottom: 25px;
}
.ImgOnHover{
display: inline-block;
width: 50px;
background: url('img/facebook-hover.png') no-repeat;
}
.ImgOnHover:hover img {
visibility: hidden;
}
在這裏得到一些想法。 https://www.w3schools.com/howto/howto_css_image_overlay.asp – tech2017
你期望在*前景*圖像元素上放置**背景**圖像做什麼? – Quentin
@Quentin你能解釋一下嗎? –