0

我开始建网站了,但是好像除了IE以外的所有浏览器都可以查看。我对为什么会发生这种情况感到困惑,对我的问题的任何见解将不胜感激。

链接到网站

HTML:

<html>
<head>

    <link rel="stylesheet" type="text/css" media="screen" href="css/stickyFooter.css" />

</head>
<body>

<div id="wrap">

    <header>
        <div id="header"></div>
        <div id="banner"></div>
        <div id="nameplate"></div>
        <div id="whiteLine"></div>

    </header>

    <div id="body">body</div>

    <div class="push"></div>

</div>

<footer>footer</footer>

</body>
</html>

CSS:

* {
    margin: 0;
}
html, body {
    height: 100%;
    background: url(../image/core/background.jpg) repeat-x center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


header div#header {
    background: url(../image/core/header.png) repeat-x;
    height: 61px;
}

header div#banner {
    background: url(../image/banner/01.jpg) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 300px;
}

header div#nameplate {
    background: url(../image/core/nameplate.png) no-repeat;
    height: 140px;
    width: 1000px;
    margin: -340px auto 0 auto;
}

header div#whiteLine {
    background: url(../image/core/stripe.png) repeat-x;
    height: 1px;
    margin: 200px 0 0 0;
}

#wrap {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -61px; /* the bottom margin is the negative value of the footer's height */
}
footer, .push {
    height: 61px; /* .push must be the same height as .footer */
}

footer {
    background-color: red;
}
4

3 回答 3

3

您需要添加一个文档类型

请参阅 F12 开发人员工具中的此警告

HTML1113: Document mode restart from IE9 Standards to Quirks

查看更多信息 - http://www.javascriptkit.com/howto/doctype.shtml

于 2012-05-31T21:54:34.390 回答
1

My 2 cents.由于我为其构建页面的一些人仍然使用(抱怨)IE7,因此我必须首先编写代码以使“客户”满意。所以我马上让我的代码为 IE7 工作,然后如果它在 FF 等中工作,它就是肉汁。<footer></footer>据我所知,旧版 IE 不支持。一条建议,如果您要使用“页脚”标签,请在.php.shtml格式中使用“包含”语句,以后更容易更改;从经验。用于更坏情况的代码。干杯~

于 2012-06-01T03:13:20.427 回答
1

这很正常,网页在 IE 上不起作用。

说真的……如果您使用的是 IE9 之前的版本,请查看http://code.google.com/p/html5shim/ 。

于 2012-05-31T21:56:56.507 回答