0

いくつかのデバイスとブラウザー (PC、タブレット、iPad、Android 携帯電話) で Web ページをテストしましたが、すべて問題ないようです。

私が見つけた唯一の問題は、Android 搭載の携帯電話を使用して Web ページをテストし、ブラウザとして IE を使用した場合です。

Web ページが何らかの理由で画面の左側に押し出され、ナビゲーション リンクが適切に配置されていません。これは、Android 搭載の携帯電話で Internet Explorer を表示している場合にのみ発生します。

なぜこれが起こるのか、どのように修正するのか考えていますか?

Web ページは次のとおりです: 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

私はあなたが言及したテスト環境を持っていないので、正確な解決策を提供することはできません. 何かに。それは少なくとも私の経験でした..

あなたの #container にはそれがないようです。体もそうではありません。

私もあなたのすべてを変更します

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

margin: 0 auto;
于 2013-08-13T19:26:22.483 に答える