Html CSS菜单包装器在iphone屏幕上溢出

Html CSS菜单包装器在iphone屏幕上溢出,html,ios,css,Html,Ios,Css,我有一个网站,请看: 在我的各种浏览器中,该网站看起来不错。然而,在IOS设备上,菜单包装似乎有某种溢出。这是我的猜测。可能是其他原因造成的。它是屏幕右上方的一个黑色大方框。请在苹果设备上查看该网站,了解我的意思。下面是我的CSS和html。有人能告诉我哪里出了问题吗 CSS: 以下是到目前为止的HTML: <div id="wrapper"> <div id="menu-wrapper"> <div id="menu" class="con

我有一个网站,请看:

在我的各种浏览器中,该网站看起来不错。然而,在IOS设备上,菜单包装似乎有某种溢出。这是我的猜测。可能是其他原因造成的。它是屏幕右上方的一个黑色大方框。请在苹果设备上查看该网站,了解我的意思。下面是我的CSS和html。有人能告诉我哪里出了问题吗

CSS:

以下是到目前为止的HTML:

<div id="wrapper">
    <div id="menu-wrapper">
        <div id="menu" class="container">
            <Center>
                <ul>
                    <li class="current_page_item"><a href="index.html">Home</a></li>
                    <li><a href="About.html">About</a></li>
                    <li><a href="Animation.html">Animation</a></li>
                    <li><a href="Contact.html">Contact</a></li>
                </Center>
            </ul>
        </div>
    </div>

    <div id="logo" class="container">
        <Center>
            <div class="image">
                <img src="images/Logo.gif" width="474" height="150" alt="Death Valley Illustration Logo" />
                <Center/>
            </div>
        </div>

        <div id="page" class="container">
            <Center>
                <a href="mailto:gavin@deathvalleyillustration.org?subject=I want to pay you money" class="button">Email Me!</a> <a href="https://twitter.com/deathvalley_" class="button">Follow me!</a>
                <div class="entry">
                    <p>
                        Welcome to <b> Death Valley Illustration. </b> </br>  You can browse all of my recent designs & commissions by scrolling down the page and clicking on any of the images in the projects section below.</br>
                        Please get in touch if you have any potential collaborations or freelance illustration work that you would like to discuss.
                    </p>
                <Center> 
            <HR>    
        </div>

欢迎来到死亡谷插画
通过向下滚动页面并单击下面“项目”部分中的任何图像,您可以浏览我最近的所有设计和委托
请联系,如果你有任何潜在的合作或自由插图工作,你想讨论。



您有一个设置的宽度,所以在主体中这样做-

body {min-width: 1200px;}
body {min-width: 1200px;}