align div in the bottom of another div using css

前端 未结 3 1585
别那么骄傲
别那么骄傲 2021-02-06 00:09

I want to align the DIV c in the bottom of the DIV b not DIV a

3条回答
  •  青春惊慌失措
    2021-02-06 00:48

    Click in this link, maybe it can help you

    #b {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: inline-flex;
    
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    flex-flow: row nowrap;
    
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;}
    

    http://jsfiddle.net/rudiedirkx/7FGKN/

提交回复
热议问题