Custom cursor image doesn't work in all IEs?

后端 未结 8 1644
梦如初夏
梦如初夏 2020-11-30 11:16

I think I have tried different methods suggested all over the internet but nothing worked. This is my current css code:

div {
   cursor: url(images/zoomin.c         


        
8条回答
  •  粉色の甜心
    2020-11-30 12:11

    To work in IE you need specify full path to CUR file. E.g.:

    html {
        cursor: url("../img/cursor.png"), url("http://www.example.com/dist/assets/img/cursor.cur"), default;
    }
    

提交回复
热议问题