JSFiddle - React, Tailwind, and code Playground
by dynamis
HTML
<div style="position: absolute; left: 100px;">絶対配置されている祖先要素
<table style="position: relative; top: 100px;"><tr><td>
table 内の通常配置要素
<div style="position: absolute; top: 50px; left: 50px;">table 内の絶対配置要素</div>
</td></tr></table>
</div>
CSS
div, table { border: solid 1px; }