我的图像在IE 7.0中没有悬停效果

时间:2013-10-25 14:27:18

标签: css

我有这样的标记

<a href="http://abc.com/">
<span class="symbol"> </span>    
</a>

CSS

background-image: url("socialsymbol.png");
background-position: ;
height:  ;
width: ;
cursor:pointer

我的问题是,当我将鼠标悬停在图像/跨度上时,除了IE.7.0之外,所有浏览器中的手形符号都会变为可能是什么问题?

2 个答案:

答案 0 :(得分:0)

Cross-browser 'cursor:pointer'处查看答案。

提议

cursor: pointer;
cursor: hand;

作为跨浏览器解决方案。

答案 1 :(得分:0)

可能你需要定义高度和宽度试试这个

<style>
.symbol{
background-image: url("socialsymbol.png");
background-position: ;
height: 100px  ;
width: 100px;
cursor:pointer;
}
</style>