Change cursor image on scrollbar in chrome

前端 未结 2 420
终归单人心
终归单人心 2021-01-11 10:55

I need to change custom cursor for scrollbar in Chrome. I have lightbox which has set custom cursor with big X and Close text. Problem is that in chrome the cursor definitio

2条回答
  •  执念已碎
    2021-01-11 11:45

    Try adding cursor: auto to your scrollable class

    .scrollable { 
      cursor: auto; 
    }
    

    Works with textareas, not sure with divs.

提交回复
热议问题