3

2 つの子フレックス アイテムを含むフレックスボックス ヘッダーがあります。これらのフレックスアイテムには、独自の子があります。

フレックスアイテムの垂直方向の配置をオーバーライドして、子が下に配置されるようにする方法はありますか?

div.flexbox {
  display: flex;
  align-items: stretch; /* cross axis */
  justify-content: space-between; /* main axis */
  flex-flow: row wrap;
  border-bottom: 1px solid #ddd;
  min-height: 100px;
}

.item-1, .item-2 {
  padding: 10px;
}

.item-1 {
  width: 30%;
  position: relative;
}

.item-2 {
  width: 60%;
}
<div class="flexbox">
  <div class="item-1">
    <span>I want to be aligned at the bottom of item-1</span>
  </div>

  <div class="item-2">
    <span>I want to be aligned at the bottom of item-2</span>
  </div>
</div>

4

2 に答える 2

2

webkit-align-items を使用して m

-webkit-align-items:flex-end;  

http://jsfiddle.net/5N2km/1/

于 2012-12-23T16:35:54.280 に答える