Align multiple divs in one line and center text vertically and horizontally

前端 未结 2 1036
夕颜
夕颜 2021-01-25 01:33

I want to align several div\'s into one line and also center the content vertically and horizontally

2条回答
  •  忘了有多久
    2021-01-25 02:03

    I aligned multiple divs within a table cell (td) by creating a container DIV, as follows:

    
        
    // container DIV with CSS as below

    where css for containingDIV is:

    .containingDIV {
        display: flex;
    }
    

提交回复
热议问题