Webサイトを作成していて、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つのボタンすべてに同じホバー効果を追加したいと思います