JSFiddle - React, Tailwind, and code Playground
by TJ VanToll
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/jquery-ui-git.css">
<script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<div class="wrap">
<div class="parent">
<div class="resizable">scroll to the far right & resize me, i'll jump back</div>
</div>
</div>
CSS
.wrap {
width: 500px;
height: 300px;
border: 1px solid black;
overflow: scroll;
}
.parent {
position: relative;
}
.resizable {
position: absolute;
width: 600px;
height: 45px;
background: teal;
}
JavaScript
$( ".resizable" ).resizable({
containment: "parent"
});