0

我想更改 div.button on 的背景图片#pianist a:hover。这可能与 CSS 吗?

<a id="pianist">
    <div class="button"></div>
    <h2>PIANIST</h2>
</a>
4

2 回答 2

1

您可以通过将其嵌套在下面来定位它#pianist:hover

例子

#pianist:hover .button {
    background-color: red; /* replace with desired background declaration */
}
于 2013-10-13T05:21:59.917 回答
1

这是可能的..只需使用:#pianist:hover .button

jsFiddle在这里

.button {
    width:100px;
    height:100px;
    background: url('http://placehold.it/100x100');
}
#pianist:hover .button {
    background: url('http://placekitten.com/100/100');
}
于 2013-10-13T05:22:17.193 回答