別のdivの下側の近くにdivを配置する


102

私は外側のdivと内側のdivを持っています。内側のdivを外側のdivの下部に配置する必要があります。

外側のdivは伸縮自在です(幅:たとえば70%)。インナーブロックも中央に配置する必要があります。

記述されたメイクアップの簡単なモデルを下の写真に示します。

ここに画像の説明を入力してください


高さも伸縮性がありますか?そうでない場合は、内側のボックスのmargin-topを(outerBoxHeight-innerBoxHeight)に設定できます。
peirix 2009年

@peirix:はい、外側のブロックの高さは変化する可能性があり、私たちはそれを知りません
Roman

回答:


79

テスト済みで、Firefox 3、Chrome 1、IE 6、7、8で動作しています。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                      "http://www.w3.org/TR/html4/strict.dtd">
<html><body>
<div style='background-color: yellow; width: 70%;
            height: 100px; position: relative;'>
    Outer
    <div style='background-color: green;
                position: absolute; left: 0; width: 100%; bottom: 0;'>
        <div style='background-color: magenta; width: 100px;
                    height: 30px; margin: 0 auto; text-align: center'>
            Inner
        </div>
    </div>
</div>
</body>
</html>

こちらのライブバージョン:http : //jsfiddle.net/RichieHindle/CresX/


ありがとう、あなたの解決策はほぼ正しいです。IEの緑のブロックのスタイルに「// margin-left:-40px」を追加するだけで済みました。margin-left属性を使用したこのハックがなければ、緑のブロックはIE7に残されました。誰もがこの40pxの由来を説明できますか?
ローマ

IE7は、「外側」という単語の後に緑色のdivを水平に配置していました。「左:0」を指定するようにコードを更新しました。
RichieHindle 2009年

13

中央に配置するには、下部のラッピングdivが必要です。

<style>
   /* making it look like your nice illustration */
   #outer { width: 300px; height: 200px; background: #f2f2cc; border: 1px solid #c0c0c0; }
   #inner { width: 50px; height: 40px; background: #ff0080; border: 1px solid #800000; }

   /* positioning the boxes correctly */
   #outer { position: relative; }
   #wrapper { position: absolute; bottom: 3px; width: 100%; }
   #inner { margin: 0 auto; }
</style>


<div id="outer">
   <div id="wrapper"><div id="inner"></div></div>
</div>

7

CSS3をFlexbox使用すると、下部の配置が非常に簡単になります。Flexboxサポートテーブルを確認する

HTML

<div class="outer">
  <div class="inner">
  </div>
</div>

CSS

.outer {
  display: flex;
  justify-content: center; /* Center content inside */
}
.inner {
  align-self: flex-end; /* At the bottom of the parent */
}

出力:


5

ie6を含むすべてのブラウザーで正常に動作します。

<style>
    #outer{
        width: 70%;
        background-color: #F2F2CC;
        border: 1px solid #C0C0C0;
        height: 500px;
        position: relative;
        text-align: center;
    }

    #inner{
        background-color: #FF0080;
        border: 1px solid black;
        width: 30px;
        height: 20px;

        /* Position at the bottom */
        position: relative;
        top: 95%;

        /* Center */
        margin: 0 auto;
        text-align: left;
    }
</style>

<div id="outer">
    <div id="inner">
    </div>
</div>

上95%は下10pxと同じではありません。画面のサイズが変更されたときに、内側のボックスを下部に固定します。
user959690
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.