Safari browser bottom toolbar blocked

Original link: https://www.sey.ink/6008/

I found that when the iOS (Safari) browser is displayed, the bottom toolbar of the browser always blocks part of the bottom, and can only be seen when the toolbar is hidden or scrolled up.

Avoid using height: 100vh; solution:

  
html body{  
    height: 100%;   
}  
  
/* The entire body content here is wrapped in a div */  
.divID{  
    height: 100%;  
}  

The post Safari browser bottom toolbar blocking appeared first on Xiansen Blog .

This article is reproduced from: https://www.sey.ink/6008/
This site is only for collection, and the copyright belongs to the original author.