JSFiddle - React, Tailwind, and code Playground

by NicosKaralis

HTML

<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>

CSS

div {
    border   : 1px solid #000;
    width    : 100px;
    height   : 100px;
    position : absolute;
}

.div1 { 
    left :  20px;
    top:  20px;
    background: #CEE; 
    background : rgba(0, 170, 170, .2); 
}
.div2 {
    left : 100px; 
    top:  40px;
    background: #ECE;
    background : rgba(170, 0, 170, .2);
}
.div3 {
    left :  40px;
    top: 100px; 
    background: #EEC;
    background : rgba(170, 170, 0, .2); 
}

JavaScript

$('div').draggable()