我正在创建一个网站,并希望通过加载另一个我在 Photoshop 中创建的颜色稍有不同的图像/按钮来在我的按钮上添加悬停效果。
当我应用代码时,什么也没有发生。
这是我的代码:
CSS:
#main{
position: relative;
background-color:#ececec;
height:900px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
}
#main .button2{
position: absolute;
left:0.5%;
top: 71.5%;
z-index:20;
width:170px;
height:40px;
}
#main .button2:hover{
background-image : url(images/buttBootsRollover.png);
}
HTML:
<div id="main">
<article>
<section>
<a href="#index.php" > <img src="images/buttGloves.png" class="button" /></a>
<a href="#index.php" > <img src="images/buttBoots.png" class="button2" /></a>
<a href="#index.php" > <img src="images/buttEqu.png" class="button3" /></a>
</section>
</article>
这是可能提供更好概述的图片:
最终我想在所有 9 个按钮上添加相同的悬停效果