我试图让一个白色的 div 框在悬停时变成红色,到目前为止,我的 css 中有这个:
#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>
但它根本不起作用,请帮忙?