<main style="position: relative" id="main">
<article>
<div id="example" style="position: absolute; left: 180px; top: 180px">...</div>
</article>
</main>
<script>
alert(example.offsetParent.id); // main
alert(example.offsetLeft); // 180 (*)
alert(example.offsetTop); // 180
</script>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.