JSFiddle - React, Tailwind, and code Playground
HTML
<div class="contain">
<textarea>drag the corner of this to resize it (assuming you're in chrome)</textarea>
<div class="tooltip">i'm a tooltip</div>
</div>
CSS
.contain { position:relative;}
.tooltip { position:absolute; left:300px; top:8px;}
/* css just for formatting the demo */
.tooltip { border: solid 1px blue;}
textarea { width: 290px;}