我想在#pianist a:hover
上更改div.button的背景圖片。這可能與CSS?更改錨定在a:hover上的div的背景嗎?
<a id="pianist">
<div class="button"></div>
<h2>PIANIST</h2>
</a>
我想在#pianist a:hover
上更改div.button的背景圖片。這可能與CSS?更改錨定在a:hover上的div的背景嗎?
<a id="pianist">
<div class="button"></div>
<h2>PIANIST</h2>
</a>
這是可能的..只是使用:#pianist:hover .button
.button {
width:100px;
height:100px;
background: url('http://placehold.it/100x100');
}
#pianist:hover .button {
background: url('http://placekitten.com/100/100');
}
錨點與按鈕的大小相同嗎? –
錨點有點大,還包含圖片下方顯示的文字「PIANIST」。 – Thomas