IPad Aligned Website

I'm having problems margin: 0 autowith my iPad. divaligned to the left, and not in the center, as on the desktop.

You can see the site here: www.amplify.io

The container is wide, and I tried several solutions on the Internet, but to no avail ... any pointers were very appreciated.

+3
source share
3 answers

There may be an overflow because you are not setting the viewport for mobile devices.

Try adding:

<meta name="viewport" content="width=device-width,
                           maximum-scale=1.0" />

for your HTML header to be sure. Which should set the page width to the width of the iPad and make sure that scaling does not occur.

+10
source

Validator Results

26 11 . , , , . , , .

0

If you mean the whole div (whole page):

margin-left: auto; margin-right: auto;

-3
source

All Articles