Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The cursor grab option is not working in Internet Explorer using CSS

For dragging the div I need to use cursor grab option. But it is not working in Internet Explorer. I tried to use cursor with url option. That is also not working in Internet Explorer. Is there any way to change the cursor design?

like image 400
GomathyP Avatar asked Mar 26 '14 09:03

GomathyP


1 Answers

You can download the cursors used by Gmail. Download this one and save it as "grab.cur" and this one and save it as "grabbing.cur" in the same folder as your HTML document. Then insert the following codes in you HTML document according to if you want the grab cursor or the grabbing cursor:

  • Grab cursor: style="cursor: url(grab.cur), move"
  • Grabbing cursor: style="cursor: url(grabbing.cur), move"
like image 120
Donald Duck Avatar answered Sep 17 '22 15:09

Donald Duck