我想在照片上懸停一個帶有標題的透明PNG。當我給div的位置:絕對或指定的寬度懸停消失。但是,如果我不這樣做,那麼懸停顯示在圖像的右側和左側。無法獲取背景圖像鼠標懸停在圖像
我顯然做錯了什麼,但只是無法弄清楚什麼。任何幫助,將不勝感激。
謝謝!
這裏是網站和相關的代碼。
網站:http://www.theshalomimaginative.com/
<div id= "logo">
<h3><img src="Graphics/splashpagelogo.png" alt="The Shalom Imaginative Documentary Photography" /></h3>
</div>
#logo {
position:absolute; width:475px; height:365px; padding: 0 0 0 242px;
}
h3 {
position:absolute; width:475px; height:365px;display: block;
}
h3:hover {
position:absolute; width:475px; height:365px; display: block; background-image: url('http://theshalomimaginative.com/Graphics/Homepagehover.png');
}
的背景圖片絕不會顯示是否有前景圖像。 – Jrod
oops。謝謝。編輯它。 – TheImaginative