How To Display Like Table

https://selosele.github.io/2020/01/09/table-property/

main div.mainContent > section.menuContent > .head {
    padding: 50px 0 40px 45px;
    margin-bottom: 70px;
    background: #fff;
    box-sizing: border-box;
    display: table;
}
/* 부모요소에 table 선언후 자식에 table-cell 선언
		자식요소들 Line 정렬 가능
		vertical-align으로 자식요소들 내부 정렬 가능 */
main div.mainContent > section.menuContent > .head > .userThumb {
    display: table-cell;
    vertical-align: middle;
}