2013-10-13 39 views
0

我想在#pianist a:hover上更改div.button的背景圖片。這可能與CSS?更改錨定在a:hover上的div的背景嗎?

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

錨點與按鈕的大小相同嗎? –

+0

錨點有點大,還包含圖片下方顯示的文字「PIANIST」。 – Thomas

回答

1

您可以通過嵌套它#pianist:hover下瞄準它,像這樣:

example

#pianist:hover .button { 
    background-color: red; /* replace with desired background declaration */ 
} 
+0

謝謝,這正是我正在尋找的! – Thomas

1

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

jsFiddle here

.button { 
    width:100px; 
    height:100px; 
    background: url('http://placehold.it/100x100'); 
} 
#pianist:hover .button { 
    background: url('http://placekitten.com/100/100'); 
}