I'm trying to make a child's div higher than the parent's. Is there a way to do so?
<div class="main_wrapper" style="position:relative; margin-top:-3rem; padding: 3rem, 4rem; z-index:-1;">
<div class="child" >
here I created a box that has a z-index of -1 since it inherited it.
Can I change it to higher than the main_wrapper?
</div>
</div>