Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS IPhone browser resolution / div problem Reply To: IPhone browser resolution / div problem

#169100
zemaker
Participant

setting the width and height to 100% will do the trick.

* {
    margin: 0;
    padding: 0;
}
html {
    width: 100%;
    height: 100%;
    border: 1px solid white;
}