프론트 작업을 하다 보니 중앙 정렬하는 기능을 자주 사용하게 됐다. 가운데에 요소들을 배치하는 것이 깔끔하고 안정적인 느낌을 주었다. 중앙 정렬 기능들을 정리해보자.Flexbox로 중앙 정렬세로/가로 모두 중앙 정렬.container { display: flex; justify-content: center; /* 가로 중앙 정렬 */ align-items: center; /* 세로 중앙 정렬 */ height: 100vh; /* 화면 전체 높이 */}justify-content: center;는 가로 방향으로 중앙 정렬align-items: center;는 세로 방향으로 중앙 정렬단일 축에서만 중앙 정렬가로 중앙 정렬 : justify-content: center;세로 중앙 정렬 : align-i..