I have a div having a css class attached to it which has z-index defined. This was working fine for chrome and firefox but not for IE. I had to put position:relative with IE. But the same approach does not work with edge. Nothing is working for Edge.
I have something like a button which when click two elements open, one overlapping the other. The one i want to be on top has z-index 50 and the other one has 20.
Do i need to add some other property alongside z-index to get i working on edge?
<div class="abc">
...
</div>
.abc{
z-index: 10;
}
I am having problem with just edge.