Here is the issue I'm facing: I have multiple div containers in my code.
.outer {
position: relative;
z-index: 1;
}
.inner {
position: absolute;
z-index: 999;
}
<div class="outer">
<div class="inner">
<div class="options">Content</div>
</div>
</div>
The above selection of three divs is repeated multiple times. The problem now is that the outer div overlaps the inner div. I've tried using z-index to resolve it but with no success. Does anyone have a solution for this?