JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<div class="gentbl">
    <div class="genrw">
        <div class="rwttl">Title</div>
        <div class="rwelm">Element</div>
    </div>
    <div class="genrw">
        <div class="rwttl">Title</div>
        <div class="rwelm">Element</div>
    </div>
    <div class="genrw">
        <div class="rwttl">Title</div>
        <div class="rwelm">Element</div>
    </div>
    <div class="genrw">
        <div class="rwttl">Title</div>
        <div class="rwelm">Element</div>
    </div>
</div>

CSS

.gentbl{
	position: absolute;
	white-space: nowrap;
	padding: 8px;
	margin: 1%;
	background: -moz-linear-gradient(45deg,  rgba(245,245,245,0.2) 0%, rgba(255,255,255,0.2) 50%, rgba(245,245,245,0.2) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,rgba(245,245,245,0.2)), color-stop(50%,rgba(255,255,255,0.2)), color-stop(100%,rgba(245,245,245,0.2))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(45deg,  rgba(245,245,245,0.2) 0%,rgba(255,255,255,0.2) 50%,rgba(245,245,245,0.2) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(45deg,  rgba(245,245,245,0.2) 0%,rgba(255,255,255,0.2) 50%,rgba(245,245,245,0.2) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(45deg,  rgba(245,245,245,0.2) 0%,rgba(255,255,255,0.2) 50%,rgba(245,245,245,0.2) 100%); /* IE10+ */
	background: linear-gradient(45deg,  rgba(245,245,245,0.2) 0%,rgba(255,255,255,0.2) 50%,rgba(245,245,245,0.2) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33f5f5f5', endColorstr='#33f5f5f5',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	border-radius: 3px 3px 3px 3px;
	box-shadow: 0 0 2px 1px #160801;
	text-shadow: 0 0 1px #160801;
	font-size: 16px;
}
.genrw{
	position: relative;
	display: inline-block;
	padding: 0;
	margin: 0;
}
.rwttl{
	background: -moz-linear-gradient(45deg,  rgba(245,245,245,0.7) 0%, rgba(255,255,255,0.7) 50%, rgba(245,245,245,0.7) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,rgba(245,245,245,0.7)), color-stop(50%,rgba(255,255,255,0.7)), color-stop(100%,rgba(245,245,245,0.7))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(45deg,  rgba(245,245,245,0.7) 0%,rgba(255,255,255,0.7) 50%,rgba(245,245,245,0.7) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(45deg,  rgba(245,245,245,0.7) 0%,rgba(255,255,255,0.7) 50%,rgba(245,245,245,0.7) 100%); /* Opera 11.10+ */
	background:...

JavaScript

$(function(){
    $('.gentbl').sortable({
        revert: true
    });
    $('.gentbl').disableSelection();
});