How to make child div absolute for a grand parent div as below structure?
We know that here child div is absolute for parent div because parent is relative div but here is scenario where parent is relative div as along as grand parent also relative div but and now I want to make child div absolute for grand parent div without changing parent div position. here is code sample code
<!-- grand parent div-->
<div style="position:relative">
<!-- parent div -->
<div style="position:relative">
<!-- child div -->
<div style="position:absolute">
</div>
</div>
</div>
Is there any possibility or not?