当鼠标悬停在<object type =“application / x-shockwave-flash”> </object>上方时,将光标移动到手中

时间:2014-09-30 09:38:43

标签: css flash

在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类......还有其他想法吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

试试这个:

.my_class:hover {
    cursor: pointer;
}