I'm curious if something like this could work:
<div class="arrow-left" style="z-index:2; position: fixed; height: 100%; width: 100%;"></div>
<div class="meta" style="z-index:1; position: relative;">
<div class="description">description <a href="link" style="z-index:3; position: relative;">link</a> description</div>
</div>
I would like the link with z-index: 3;
to appear above arrow-left
, but keep description
below it. Can this be achieved with the HTML structure provided above?