JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <p>lorem ipsum</p>
</div>
<a>click to fix</a>

CSS

div { background: #ccf; }
p { margin: 1em 0; position: relative; }

JavaScript

$("a").click(function() {
    $("div").css("overflow", "auto");
});