Is it possible to make the child div absolute for the grand parent div without changing the parent div's position? Here is the scenario: the parent div is a relative div, but the grand parent div is also a relative div. How can we achieve this without altering the parent div's position? See the code sample below:
<!-- grand parent div-->
<div style="position:relative">
<!-- parent div -->
<div style="position:relative">
<!-- child div -->
<div style="position:absolute">
</div>
</div>
</div>
Is there a way to accomplish this?