Flexbox column align self to bottom

后端 未结 7 1418
逝去的感伤
逝去的感伤 2021-01-30 19:53

Im trying to use Flexbox. http://css-tricks.com/almanac/properties/a/align-content/ this shows nice alignment options; but i would actually want a Top-top-bottom situation.

7条回答
  •  深忆病人
    2021-01-30 20:04

    Basically, the answer is to give to the last of the middle elements a flex grow 1 code as follows:

    .middle-last{
      flex-grow: 1; // assuming none of the other have flex-grow set
    }
    

    Thanks, T04435.

提交回复
热议问题