Are Flexbox and vh height units not compatible in IE11?
The issue isn’t vh units but min-height I found a semi-working CSS-only solution: min-height: 100vh; height: 100px; The extra height will enable IE to fill the screen vertically even if the content is not tall enough. The drawback is that IE will no longer wrap the content if it’s longer than the viewport. Since this … Read more