JSFiddle - React, Tailwind, and code Playground

HTML

<div class="main">
    <div class="container">
        <div class="jqui">
            <div class="contentTitle">
                 <h1>Playground</h1>

            </div>
            <div class="content">
                <div id="draggable" class="ui-widget-content colored">1</div>
                <div id="draggable1" class="ui-widget-content colored">2</div>
                <div class="dragcontainer">
                    <div style="position: absolute; left: 50%;">
                        <div id="draggable2" style="position:relative;left: -50%;" class="ui-widget-content colored">3</div>
                    </div>
                </div>
            </div>
            <!--jqui End-->
        </div>
        <!--Container End-->
    </div>
    <!--Main End-->

CSS

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content:'';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*General CSS*/
 .main {
    width: 100%;
}
.jqui {
    width: 90%;
    margin: 0 auto;
    background: #eee;
}
.contentTitle h1 {
    text-align: center;
    font-size: 2em;
    font-family: verdana;
    font-variant: small-caps;
    color: #d9043d;
    background: #ccc;
}
.content {
    width: 100%;
    height: 500px;
}
.colored {
    width: 100px;
    height: 100px;
    text-align: center;
    margin: 0 auto;
}
.dragcontainer {
    width: 100%;
    height: 200px;
    background: pink;
    top: 40%;
}

JavaScript

$(function () {
    $("#draggable").draggable();
    $("#draggable1").draggable({
        revert: true
    });
    $("#draggable2").draggable({
        containment: ".dragcontainer",
        revert: true
    });
});