Just use 100vh , this works fine for me.
3 Likes
yeah, if I have an input element keyboard should come up so I canāt do scroll=false.
This works like a charmā¦
I really appreciate it. !
Iād recommend using viewport width and height instead of percentages, even though theyāre almost identical. Same same, but different.
.test{
background: red;
height: 100vh; // 100 viewport height
width: 100vw; // 100 viewport width
}