光标图像在IE中不起作用

问题描述:

我有一个具有以下CSS的div.

I have a div with the following css.

.mydiv
{
    cursor: url("/image/cursor-hand.png"), move;
}

在chrome,Firefox和safari中工作正常,但在IE中不起作用.

Works fine in chrome, Firefox and safari, But doesn't work in IE.

有帮助吗?

IE不支持普通图形,您需要光标文件 .cur.

IE doesn't support normal graphics, you need a cursor file .cur.

另请参阅:

  • quirksmode.org: compatibility list: Cursor
  • MDN: Using URL values for the cursor property