Skip to content Skip to sidebar Skip to footer

Strange Space At Bottom Of Page On Ios

Page here: http://teamcherry.com.au/introducing-hollow-knight/#more-116 For some reason a large white space appears under the footer on this page, but only on mobile safari (iPhone

Solution 1:

Your problem is the

body {
    min-height: 100vh;
}

IOS7 has issues with rendering VH units anywayway but maybe try setting your body height to just 100% if its a full-height section hack your after.

Caniuse explains it in more detail.

But without any use case for why you need that min-height property we can't help much

also try checking out this pollyfill, it may fix your issues

viewport units pollyfill

Post a Comment for "Strange Space At Bottom Of Page On Ios"