web-dev-qa-db-ja.com

上下の不明な高さdivを持つCSSを使用してdivを残りの高さに設定します

ピクセルとjavascriptをいじらずに、ラッパーをウィンドウの高さ(スクロールなし)と中央のdivをスクロール可能にすることは可能ですか?

<div id="wrapper">
  <h1>Header</h1>
  <div id="center">
    <div style="height:1000px">high content</div>
  </div>
  <div id="footer">Footer</div>
</div>

基本的に、ヘッダーを上部に表示し、フッターを常に下部に表示し、中央に残りの高さを占めるスクロール可能なコンテンツを配置します。
ヘッダー、フッター、および中央のdivの高さはすべて不明です(pxまたは%の設定なし、つまり可変フォントサイズまたはパディング)。純粋なCSSで可能ですか?

55
danial

Dan Dascalesc answerから派生したクロスブラウザソリューション:

http://jsfiddle.net/Uc9E2

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
.l-fit-height {
    display: table;
    height: 100%;
}
.l-fit-height-row {
    display: table-row;
    height: 1px;
}
.l-fit-height-row-content {
    /* Firefox requires this */
    display: table-cell;
}
.l-fit-height-row-expanded {
    height: 100%;
    display: table-row;
}
.l-fit-height-row-expanded > .l-fit-height-row-content {
    height: 100%;
    width: 100%;
}
@-moz-document url-prefix() {
    .l-scroll {
        /* Firefox requires this to do the absolute positioning correctly */
        display: inline-block;
    }
}
.l-scroll {
    overflow-y: auto;
    position: relative;
    height: 1000px;
}
.l-scroll-content {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 1000px;
    min-height:100px;
}
<div class="l-fit-height">
    <section class="l-fit-height-row">
        <div class="l-fit-height-row-content">
            <p>Header</p>
        </div>
    </section>
    <section class="l-fit-height-row-expanded">
        <div class="l-fit-height-row-content l-scroll">
            <div class="l-scroll-content">
                <p>Foo</p>
            </div>
        </div>
    </section>
    <section class="l-fit-height-row">
        <div class="l-fit-height-row-content">
            <p>Footer</p>
        </div>
    </section>
</div>
5
danial

2014 UPDATE:このレイアウトの問題を解決する最新の方法は、 flexbox CSSモデルを使用 です。すべての主要なブラウザーとIE11 +でサポートされています。


2012:CSSだけでこれを行う正しい方法は、display: tableおよびdisplay: table-row。 IE8以降、これらは すべての主要なブラウザでサポートされています です。これは、表示用のテーブルを使用するnotです。 divを使用します。

html, body {
    height: 100%;
    margin: 0;
}
.wrapper {
    display: table;
    height: 100%;
    width: 100%;
    background: yellow;  /* just to make sure nothing bleeds */
}
.header {
    display: table-row;
    background: gray;
}
.content {
    display: table-row;  /* height is dynamic, and will expand... */
    height: 100%;        /* ...as content is added (won't scroll) */
    background: turquoise;
}
.footer {
    display: table-row;
    background: lightgray;
}
<div class="wrapper">
    <div class="header">
        <h1>Header</h1>
        <p>Header of variable height</p>
    </div>
    <div class="content">
        <h2>Content that expands in height dynamically to adjust for new content</h2>
        Content height will initially be the remaining
        height in its container (<code>.wrapper</code>).
        <!-- p style="font-size: 4000%">Tall content</p -->
    </div>
    <div class="footer">
        <h3>Sticky footer</h3>
        <p>Footer of variable height</p>
    </div>
</div>

それでおしまい。 divは期待どおりにラップされます。

81
Dan Dascalescu