GomathyP
GomathyP

Reputation: 147

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?

Upvotes: 14

Views: 9815

Answers (1)

Donald Duck
Donald Duck

Reputation: 8892

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"

Upvotes: 19

Related Questions