Skip to main content

Command Palette

Search for a command to run...

CSS for grabbing cursor drag and drop

Updated
0 min readView as Markdown

Adapted from: Stack Overflow

.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;
}
148 views