Css – Custom mouse pointer not working in IE11

cssinternet explorerinternet-explorer-11

I am trying to implement a custom cursor which is not working in IE11.
This is working fine in chrome. Can someone help me to make it work in Internet Explorer 11

The style I am using is

cursor : url("../img/cursor-grab.gif"), url("../img/cursor-grab-cur.cur"), move

You can see the page here : http://us.accept.kia.eu/us/models/kia-sorento-2014/
There will be a car titles 360 View.

Thanks

Best Answer

Per the MSDN reference page for the cursor property, IE supports only .cur and .ani files.

You can see this for yourself using one of the samples listed on the reference page. It's a bit wonky, though. You have to select a cursor and then apply it in order to verify the functionality.

Also, you should note that caniuse.com suggests that the original values of the CSS3 cursor property are more widely supported than newer values.

Hope this helps...

-- Lance

Related Topic