I have a div fixed to a specific location on my webpage using the following CSS properties:
width: 320px;
height: 160px;
position: fixed;
right: 15px;
bottom: 15px;
top: unset;
z-index: -1;
While the div displays correctly in other browsers, in Internet Explorer 11 it appears at the top right corner of the page. I suspect this issue is caused by the lack of support for top: unset;
in IE.
Are there any alternative CSS or JS solutions that can achieve the same fixed positioning across different browsers?