Html element is not vertically centered with flex center

前端 未结 2 1398
粉色の甜心
粉色の甜心 2021-01-25 18:27

Thats my fiddle: http://jsfiddle.net/atav8vzz/4/

Why is the html element with class \"vertical-align\" not vertically centered?

2条回答
  •  孤独总比滥情好
    2021-01-25 18:49

    Just add justify-content: center; to your code:

    .vertical-align {
        display: ms-flex;
        display: flex;
        align-items: center;
        justify-content: center;  
    }
    

提交回复
热议问题