Ion-content height:100% is not working

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
}