make element be positioned behind its parent, but in front of its grandparent
<div class="grandparent" style="position: relative; z-index: 1;">
<div class="parent">
<div class="element" style="position: absolute; z-index: -1"></div>
</div>
</div>