在HTML5页面中我有这个东西:
<object type="application/x-shockwave-flash" wmode="transparent" data="do stuff and get an image to use as an icon" class="my_class">
在my_class
内我定义了cursor: pointer;
,但是当鼠标悬停在swf对象图像上方时,光标会显示默认箭头,而不是手。我已经尝试将!important
添加到我的css类......还有其他想法吗?
谢谢!
答案 0 :(得分:1)
试试这个:
.my_class:hover {
cursor: pointer;
}