19

ヘッダーが 50px、本文が 100%、フッターが 50px になるようにレイアウトを設定する方法はありますか?

ボディは最低限、表示領域全体を使い切ってほしいです。フッターとヘッダーを常に画面に表示したい

4

3 に答える 3

18

I created an example in jsfiddle:

UPDATED JsFiddle: http://jsfiddle.net/5V288/1025/

HTML:

<body>
    <div id="header"></div>
    <div id="content"><div>
        Content 
    </div></div>
    <div id="footer"></div>
</body>

CSS:

html { height: 100%; }
body {
    height:100%;
    min-height: 100%;
    background: #000000;
    color: #FFFFFF;
    position:relative;
}
#header {
    height:50px;
    width:100%;
    top:0px;
    left:0px;
    background: #CCCCCC;
    position:fixed;
}
#footer {
    height:50px;
    width:100%;
    bottom:0px;
    left:0px;
    background: #CCCCCC;
    position:fixed;
}
#content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height:100%;
    padding: 0 20px;
}
#content > div {
    padding: 70px 0;
}

Without border-box the content will be height 100% + 140px padding. With the border-box the content height will be 100% and the padding will be inside.

于 2012-04-19T12:56:38.293 に答える
4

あなたが探しているのは「複数の絶対座標」だと思います。List Apartにはここで説明がありますが、基本的には、ボディの位置を絶対値として指定し、との両方を設定する必要がありtop: 50pxますbottom: 50px

<body>
<style>
#header {
  position: absolute;
  height: 50px;
} 

#body {     
  position: absolute;
  top: 50px;
  bottom: 50px;
  background-color: yellow;
}

#footer {
  position:absolute;
  height: 50px;
   bottom: 0;
}
</style>
<div id="header">Header</div>
<div id="body">Content goes here</div>
<div id="footer">Footer</div>

http://www.spookandpuff.com/examples/absoluteCoordinates.htmlは、このテクニックをよりきれいに示しています。

于 2012-10-16T05:12:00.857 に答える
4

Andreas Winter ソリューションの修正:

http://jsfiddle.net/5V288/7/

*それの解決策では、コンテンツが使用可能なウィンドウ領域よりも大きい場合に問題が発生します。

于 2012-04-19T13:17:44.150 に答える