web-dev-qa-db-ja.com

垂直方向に整列:下部が機能しない

Vertical-alignはインライン要素で動作するはずだと思いました。しかし、何らかの理由で、灰色のdiv内のすべてが、下ではなくtopに揃えられています。

<div style="position:absolute; top:130px; right: 80px; width: 230px; background-color:Gray; height:30px;" class="defaultText" id="pager">
    <span style="vertical-align:bottom;">Page Size:</span>
    <select style="vertical-align:bottom; font-size:8pt; margin-top: 0; margin-left:3px; height:16px; text-align:center;">
        <option value="50">50</option>
        <option value="100">100</option>
        <option value="200">200</option>
        <option value="500">500</option>
        <option value="10000">*</option>
    </select>
    <div style="float:right;">
        <span style="vertical-align:bottom; color:Blue; cursor: pointer; margin-right: 10px;"><</span>
        <input style="vertical-align:bottom; height:12px; font-size:8pt; width: 20px;" type="text" data-bind="value: pageNum" />
        <span style="vertical-align:bottom;"> of </span>
        <span style="vertical-align:bottom;" data-bind="text: numPages"></span>
        <span style="vertical-align:bottom; color:Blue; cursor: pointer; margin-left: 5px;">></span>
    </div>
</div>
28
Adam Rackis

テーブルセルを処理している場合を除き、vertical-alignは、要素を隣接する要素、特にテキストに対して整列します。したがって、灰色のdiv内の要素は、divの下部ではなく、otherに揃える必要があります。 http://phrogz.net/css/vertical-align/index.html の例を参照してください。

15
Tamzin Blake

これは、次のコードを使用してこれを達成できる例です。

デモ:http://jsfiddle.net/SbNKa/1/

#theContainer {
    height: 100px;
    width: 500px;
    position: relative;
    border: 1px solid #900;
}
.content-bottom {
    position: absolute;
    width: 498px;
    bottom: 0; /*This is the part that glues it to the bottom*/
    border: 1px solid #000;
}
<div id="theContainer">
    <div class="content-bottom">Content</div>
</div>
14
user888750

Flexボックスを使用した最新の更新された回答を次に示します。

div {
  height: 100%; // containing div must fill the full height of the parent div
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
8
Travis Mathis

ここに亀裂があります。答えを探していました(vertical-align)代替ではありません(bottom: 0)。だからここに解決策があります。

vertical-alignは、親(またはwrapper)要素ではなく、そのコンテナに関して設定されます。線の高さを指定してからvertical-align: bottom

    div {
        background:yellow;
        margin:10px;
        line-height:100px;
    }
    div > * {
        vertical-align: bottom;
        line-height: normal;
    }

    a {
        background-color:#FFF;
        height:20px;
        display:inline-block;
        border:solid black 1px;
        padding:5px;
    }

    span {
        background:red;
        width: 50px;
    }
    <div>
    <a>Some link</a>
    <span>Some text </span>
    </div>
4
Siraj Alam