0

我正在使用以下基本 html 和 css 模式(尽管我的实时代码看起来非常不同)

html, body {height: 100%;}

#wrap {min-height: 100%;}

#main {overflow:auto;
    padding-bottom: 150px;}  /* must be same height as the footer */

#footer {position: relative;
    margin-top: -150px; /* negative value of footer height */
    height: 150px;
    clear:both;} 

/*Opera Fix*/
body:before {
    content:"";
    height:100%;
    float:left;
    width:0;
    margin-top:-32767px;/
}

<div id="wrap">

    <div id="header">

    </div>

    <div id="main">

    </div>

</div>

<div id="footer">

</div>

在我的页面底部获得一个粘性页脚。

我已经为 body 标签应用了两个背景。一个是重复的木质纹理,然后是顶部的阴影。这两个都在页脚下。

它几乎可以工作,但是在长页面上(您必须向下滚动才能看到页脚),当您调整浏览器窗口的大小时,阴影(而不是木头)会爬上页面。我已经尝试将阴影移动到右下角的位置,但这根本不起作用。

这是它的一个阶段:我在 FF 和 Safari http://www.dnbsandbox.com/diablo/中重复了这个问题

4

1 回答 1

2

从 css 的第一行删除它:

html {
  height: 100%;
}
于 2013-03-07T09:36:21.000 回答