I am using bootstrap to preview the mobile device as follows:
It works perfectly fine in Chrome. But not on edge :(
My HTML/CSS code is as follows:
Need to set the height:100%
for .screen
container.
sample code
I think you can simply declare height twice:
height: 100%;
height: -moz-available; /* WebKit-based browsers will ignore this. */
height: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
height: fill-available;
Use min-height
for IE to fill the available space
min-height: 100%; in IE