I am trying to use grab & grabbing cursors. Not sure why as soon as I start dragging the li
cursor changes to pointer+ as you can see from the image. I want it to use grabbing cursor. What have I done wrong?
I am following this link and tried all the solutions with most up votes. I thought this is very straight forward. Here is my setup:
<li class="draggable" draggable="true">
<h2 class="title"></h2>
<h3 class="emoji"></h3>
<div class="del"></div>
<p class="desc"></p>
</li>
.draggable {
cursor: move;
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.draggable:active {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}