Align text to the bottom of a div

前端 未结 2 1630
闹比i
闹比i 2020-12-02 14:11

I tried to align my text to the bottom of a div from other posts and answers in Stack Overflow I learned to handle this with different CSS properties. But I can\'t get it do

2条回答
  •  抹茶落季
    2020-12-02 14:46

    You now can do this with Flexbox justify-content: flex-end now:

    div {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      width: 150px;
      height: 150px;
      border: solid 1px red;
    }
      
    Something to align

    Consult your Caniuse to see if Flexbox is right for you.

提交回复
热议问题