길/CSS

child element를 중앙에 위치시키는 법

7he8oy 2021. 2. 6. 11:15

< 방법 1>

parent element에 

position: relative;

 

childe element에 

position : absolute;

top: 50%;

 

<방법2>

parent element에 

justify-content : center;

align-items; center;