我想在#pianist a:hover
更改div.button的背景图片。这有可能用CSS吗?
<a id="pianist">
<div class="button"></div>
<h2>PIANIST</h2>
</a>
答案 0 :(得分:1)
您可以将其嵌套在#pianist:hover
下,如下所示:
#pianist:hover .button {
background-color: red; /* replace with desired background declaration */
}
答案 1 :(得分:1)
这是可能的..只需使用:#pianist:hover .button
.button {
width:100px;
height:100px;
background: url('http://placehold.it/100x100');
}
#pianist:hover .button {
background: url('http://placekitten.com/100/100');
}