# CSS for grabbing cursor drag and drop

Adapted from:  [Stack Overflow](https://stackoverflow.com/questions/5697067/css-for-grabbing-cursors-drag-drop) 
```
.et_pb_slides {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.et_pb_slides:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

``` 

