JSFiddle - React, Tailwind, and code Playground

by salitrapraveen

HTML

<div id="resizable" >
    <h3 >Resizable</h3>
</div>

CSS

#resizable { background-position: top left; width: 150px; height: 150px; border:2px solid black; cursor: s-resize;}

JavaScript

$(function() {
        $( "#resizable" ).resizable();
    });