방법 1. margin : 0 , auto 를 주면 중앙정렬이 가능하다. 상하 / 좌우 block요소인 div가 한줄을 다 차지하고 있다 - 이 부분이 auto로 설정할 수 있는 영역 See the Pen Untitled by mandelina (@mandelina) on CodePen. 방법2. text-align : center 이용하기 이는 1) 자식인 inline요소 2) 자식인 block요소 3) 자식인 inline-block요소 4) text 에서 적용가능하다. See the Pen Untitled by mandelina (@mandelina) on CodePen. 방법3. relative , transform: translateX(-50%)와 left(50%) 이용 자기자신의 margin에 ..