Andy-set-studio / modern-css-reset

A bare-bones CSS reset for modern web development.

Home Page:https://hankchizljaw.com/wrote/a-modern-css-reset/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webkit min-height error

am35a opened this issue · comments

here is wrong way min-height: 100vh; for body because webkit not valid and on iPad it will count + height of submenu (tab bar)... recomendation - min-height: 100%;

Afaik, there're engine specific keywords to workaround this:

    height: 100%;
    height: -moz-available;
    height: -webkit-fill-available;
    height: fill-available;

Erase