0

到目前为止,我已经取得了很大的进步。我有粘性页脚以我想要的方式工作,即

如果内容很少,则在屏幕上显示页脚。如果有很多内容推倒它:)

所以我想做的是在我的身体内容周围有一个漂亮的小边框,直到它到达页脚:)

唉,我无法做到这一点,我只能做到这一点:http: //jsfiddle.net/dcf104/ZQEGw/

Can you adise me on some additional code?
Maybe I need some extra <divs>?

你可以看到红边只能走这么远......

我怎样才能让它们一直到页脚?

非常感谢,非常感谢您的帮助

4

2 回答 2

1

像这样设置 .page-wrap :

.page-wrap {
      margin-bottom: -180px;
      height: 100%;
 }

http://jsfiddle.net/ZQEGw/1/

于 2013-08-17T15:15:45.960 回答
0

本文描述了一个粘性页脚

您可以查看要点codepen 上的示例

CSS

html, body { margin:0; padding:0; height:100%; }
#container { min-height:100%; position:relative; }
#header { background:#ff0; padding:10px; }
#body { padding:10px; padding-bottom:60px;  /* Height of the footer */ }
#footer { position:absolute; bottom:0; width:100%; height:60px;         
            /* Height of the footer */ background:#6cf; }

基本的html结构

   <div id=container>
     <div id=header>
     </div>
     <div id=body>
     </div>
     <div id=footer>
     </div>
   </div>
于 2013-12-29T01:26:37.777 回答