我試圖把白色格框變爲紅色時,它懸停痊癒了,到目前爲止,我有這個在我的CSS:如何在懸停烤盤時更改顏色的div框?
#white{
width: 90px;
height: 90 px;
background-color:white;
position: absolute;
top: 10px;
left:10px;
}
a:hover #white{
color:red;
width: 90px;
height: 90 px;
position: absolute;
top: 10px;
left:10px;
}
,這在我的html:
<div id="white">
</div>
但根本不起作用,請幫忙嗎?
更不用說沒有被發現......... – patricksweeney 2013-02-22 02:42:50
只需注意,遺留瀏覽器支持':hover'僞選擇器以外的東西''標籤是有限的。不過,現代瀏覽器應該可以做得很好。 – 2013-02-22 02:47:49
我不知道@JonathanNewmuis。根據caniuse.com,自從IE7以來它已經得到了全面的支持。 IE6真的是部分支持但沒有人應該爲IE6開發,市場份額很小。 http://caniuse.com/#search=%3Ahover – 2013-02-22 03:03:14