I have the following situation: There are several div containers in my code.
.outside {
position: relative;
z-index: 1;
}
.options {
position: absolute;
z-index: 999;
}
<div class="outside">
<div class="inside">
<div class="options">Content</div>
</div>
</div>
The Selection of three divs above is repeated several times. The problem i have now is that the outside div will overlap the options div. I tried to set this up with the z-index but it is not working. Does anyone have a solution for this?