There was a question about the disappearance of a fixed block when scrolling in Safari browser. After stopping the block is displayed again, as if nothing had happened.

This is what HTML looks like:

<div class="block-menu-trigger" style=""><!-- trigger open-menu --> <p> <a href="#" class="menu-button"> <i id="menuIcon" class="zmdi zmdi-view-module"></i> </a> </p> </div> 

And so - CSS:

 .block-menu-trigger { width: 60px; position: fixed; z-index: 2000; } 

Enlighten a beginner, what could be the reason for such behavior and how to eliminate it?

    0