web-dev-qa-db-ja.com

divが残りの高さを占めるようにする方法は?

この問題があり、2つのdivがあります。

<div style="width:100%; height:50px;" id="div1"></div>
<div style="width:100%;" id="div2"></div>

Div2がページの残りの高さを占めるようにするにはどうすればよいですか?

63
user666491

絶対配置を使用する:

#div1{
    width: 100%;
    height: 50px;
    background-color:red;/*Development Only*/
}
#div2{
    width: 100%;
    position: absolute;
    top: 50px;
    bottom: 0;
    background-color:blue;/*Development Only*/
}
<div id="div1"></div>
<div id="div2"></div>
54

これを使用できます http://jsfiddle.net/Victornpb/S8g4E/783/

#container {
    display: table;
    width: 400px;
    height: 400px;
}
#container > div{
    display: table-row;
    height: 0;
}
#container > div.fill{
    height: auto;
}

クラスを適用する.fill残りの高さを占めるようにする子供のいずれか。

<div id="container">
    <div>
        Lorem ipsum
    </div>
    <div>
        Lorem ipsum
    </div>
    <div class="fill">   <!-- this will fill the remaining height-->
        Lorem ipsum
    </div>
</div>

必要な子の数で機能し、追加のマークアップは必要ありません。

20
Vitim.us

デモ

1つの方法は、divをposition:absoluteに設定し、上部に50px、下部に0pxを指定することです。

#div2
{
    position:absolute;
    bottom:0px;
    top:50px
}
12
Joseph Marikle

前のコンテンツで占有されているピクセル数がわかっているので、calc()関数を使用できます。

height: calc(100% - 50px);
6
herman

使用できます

display: flex;

前に@Ayanが述べたCSSプロパティですが、実際の例を作成しました: https://jsfiddle.net/d2kjxd51/

4
Cezary Tomczyk

CSSテーブルを使用すると、そこにある2つをdivでラップし、次のcss/html構造を使用できます。

<style type="text/css">
.container { display:table; width:100%; height:100%;  }
#div1 { display:table-row; height:50px; background-color:red; }
#div2 { display:table-row; background-color:blue; }
</style>

<div class="container">
    <div id="div1"></div>
    <div id="div2"></div>
</div>

ただし、これらの表示タイプをサポートしているブラウザに依存します。 IE8以下はそうだとは思いません。編集:スクラッチ-IE8はCSSテーブルをサポートします。

4
Brendan

CSSを試しましたが、またはdisplay:tableを使用する必要があるか、ほとんどのブラウザー(2016)でまだサポートされていない新しいcssを使用する必要があります。

そこで、私たちのためにjqueryプラグインを作成しました。それを共有できてうれしいです:

 
//Credit Efy Teicher
$(document).ready(function () {
            $(".fillHight").fillHeight();
            $(".fillWidth").fillWidth();
        });

        window.onresize = function (event) {
            $(".fillHight").fillHeight();
            $(".fillWidth").fillWidth();
        }

        $.fn.fillHeight = function () {
            var siblingsHeight = 0;
            this.siblings("div").each(function () {
                siblingsHeight = siblingsHeight + $(this).height();
            });

            var height = this.parent().height() - siblingsHeight;
            this.height(height);
        };

 
        $.fn.fillWidth = function (){
            var siblingsWidth = 0;
            this.siblings("div").each(function () {
                siblingsWidth  += $(this).width();
            });

            var width =this.parent().width() - siblingsWidth;
            this.width(width);
        }
      * {
            box-sizing: border-box;
        }

        html {
        }

        html, body, .fillParent {
            height: 100%;
            margin: 0;
            padding: 0;
        }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<div class="fillParent" style="background-color:antiquewhite">
        <div>
            no1
        </div>
        <div class="fillHight">
            no2 fill
        </div>
        <div class="deb">
            no3
        </div>
    </div>
1
user1911353

私自身も同じ課題に直面し、flexプロパティを使用してこれら2つの答えを見つけました。

[〜#〜] css [〜#〜]

.container {
  display: flex;
  flex-direction: column;
}

.dynamic-element{
  flex: 1;
}
<div>
  <div id="header">header</div>
  <div id="content">content</div>
  <div id="footer">footer</div>
</div>

#header {
  height: 200px;
}

#content {
  height: 100%;
  margin-bottom: -200px;
  padding-bottom: 200px;
  margin-top: -200px;
  padding-top: 200px;
}

#footer {
  height: 200px;
}
0
wmzy

負のマージンを持つパディングを使用しないのはなぜですか?このようなもの:

<div class="parent">
  <div class="child1">
  </div>
  <div class="child2">
  </div>
</div>

その後

.parent {
  padding-top: 1em;
}
.child1 {
  margin-top: -1em;
  height: 1em;
}
.child2 {
  margin-top: 0;
  height: 100%;
}
0
kalu