I have a megamenu that is absolutely positioned, and as some of its parent elements need to have position:relative
, I have to use position:unset
on the direct parent. This works in Chrome and Firefox, however IE11 does not support unset
or initial
.
I can't simply remove the relative positioning from all of the parent elements as that will break other things, but I have to have the megamenu absolutely positioned relative to the page (fixed position does not work). Is there an alternative to unset
that will work in IE11?