🎨
CSS Flexbox Center
Flexbox로 요소를 정중앙에 배치
DevNest
CSS
CSSFlexboxLayout
cssCSS Flexbox Center
1.container {2 display: flex;3 justify-content: center; /* 가로 중앙 */4 align-items: center; /* 세로 중앙 */5 height: 100vh;6}7 8.centered-item {9 /* 가운데 배치될 요소 */10}