锚标签onmouseover下的图像突出显示背景颜色不变

时间:2014-04-24 08:40:43

标签: html css hover anchor onmouseover

这是我的代码onmouseover在锚标记下的图像突出显示颜色不变我能知道我在做什么错误

 <div class="iconlink">
  <a href="/Classification/ClassificationLabel" title="Classification Label">
  <img src="/Content/Images/labels-72x72.png" /><div>Classification Label</div>
     </a>
    </div>

我试过这些类型

.iconlink a:hover {background-color: #000000;
    color: #000000;0}

<div class="iconlink">
  <a href="/Classification/ClassificationLabel" title="Classification Label" class="hove"> 
<img src="/Content/Images/labels-72x72.png" /><div>Classification Label</div>
  </a>
   </div>
 .hove:hover{background-color: #000000;
    color: #000000;}

1 个答案:

答案 0 :(得分:3)

您需要将background-color应用于img css中,如:

.iconlink a:hover img {
  background-color: #000;
}

.iconlink a:hover {
  color: #000;
}

FIDDLE