<div>draggable false</div>
<div draggable="true">draggable true</div>
html, body {
width: 100%;
height: 100%;
}
body {
display: flex;
}
div {
width: 120px;
height: 120px;
margin: auto;
background: #000;
color: #fff;
text-align: center;
line-height: 120px;
// cursor: pointer;
user-select: none;
}
div:active {
cursor: grab;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.