1

I am getting two cursors in windows chrome version 31.0.1650.57 The two cursor are grab and a default arrow. I have used below CSS

CSS

div {
    width:200px;
    height:200px;
    background-color:maroon;
    border:1px solid #000;
    cursor:grab;
    cursor:-moz-grab;
    cursor:-webkit-grab;
}

Fiddle - http://jsfiddle.net/jL9ft/

Please let me know what is wrong here. Thanks.

Charles
  • 50,943
  • 13
  • 104
  • 142
Ashwin
  • 12,081
  • 22
  • 83
  • 117
  • 1
    I only get the grab cursor in the same version of Chrome, unless I'm outside of the square. – gaynorvader Dec 02 '13 at 10:19
  • I am getting only grab cursor in all browsers except windows7 chrome where I am getting 2 cursors. I am using windows7 on virtual box. – Ashwin Dec 02 '13 at 10:20
  • Could be a virtual box problem then. I'm running Windows 7 x64 and it's working fine for me on Chrome. – gaynorvader Dec 02 '13 at 11:27

1 Answers1

2

Used cursor as image from here - http://www.google.com/intl/en_ALL/mapfiles/openhand.cur

div {
   cursor:url(../images/openhand.cur) 4 4, move
}
Ashwin
  • 12,081
  • 22
  • 83
  • 117