아주 원초적으로 중요하고 생각보다 복잡한..

<div>

margin auto

position과 transform

.position-transform {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

div의 너비와 높이를 모를 때 유용한 기법

  1. 부모 기준으로 50% 위/왼쪽에서 떨어진다
  2. 자신의 너비/높이의 50%를 다시 역방향으로 오게 한다.

flex

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

제일 유용한 방법이다.

문제점은 부모의 max 높이 html, body { height: 100%;} 해줘야.. ㄹㅇ 중앙 맞출 수 있다..

텍스트

div { text-align: center }