0

我已经在几种设备和浏览器(PC、平板电脑、iPad、安卓手机)上测试了一个网页,一切看起来都不错。

我发现的唯一问题是当我使用 Android 手机测试网页时,并使用 IE 作为浏览器。

网页不知何故被推到屏幕左侧,导航链接未正确对齐。这只发生在 Android 手机上的 Internet Explorer 中查看时。

知道为什么会发生这种情况以及如何解决吗?

这是网页:http ://www.nightaccents.com 这是 CSS:

/*CSS RESET*/
html, body {
    margin:0;
    padding:0;
    height:100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-style: inherit;
    vertical-align: baseline;
}


a img { 
    border: none; 
}

a:link {
    color:#666;
    text-decoration: none;
    border:none;
}

a:hover {
    color:#0373ED;
}

a:visited{
    color:#666;
}
#container {
    min-height:100%;
    position:relative;
}
#header {
    padding:10px;
    background-color: #FFF;
}

.wrapHeader {
    position:relative;
    width:960px;
    background-color: #FFF;
    height: 149px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}

.logo {
    float:left;
    width:297px;
    height: 148px;
}
.nav {
    font-size: 16px;
    color: #666;
    float: left;
    width: 663px;
    position: relative;
    top: 75px;
    text-transform: uppercase;
    z-index: 1;
    text-indent: 135px;
}


#body {
    padding:10px;
    padding-bottom:60px;    /* Height of the footer */
}
.wrapContent {
    position:relative;
    width:900px;
    background-color: #FFF;
    height: auto;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    line-height: 1.4;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
}
#footer {
    position:absolute;
    bottom:0;
    width:100%;
    height:60px;
    background-color: #333;
    padding-top: 10px;
}


#footer p {
    margin:0;
    padding:10px;
}
.wrapFooter {
    position:relative;
    width:500px;
    background-color: #333;
    color: #CCC;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: center;
    top: 10px;
}
</style>

<!--[if lt IE 7]>
    <style media="screen" type="text/css">
    #container {
        height:100%;
    }
    </style>
<![endif]-->
4

1 回答 1

0

由于我没有您提到的测试环境,因此我无法给出确切的解决方案,但是通常当事物与左侧对齐时,这是因为您没有 margin: 0 auto; 在某事上。至少这是我的经验..

看起来你的#container 没有这个。身体也不行。

我也会改变你所有的

margin-top: 0;
margin-right: auto;
margin-bottom: 0;
margin-left: auto;

margin: 0 auto;
于 2013-08-13T19:26:22.483 回答