/* 틀(부모요소) */
.parent {
position: relative;
width: 600px;
height: 600px;
...
}
/* 중앙에 위치시킬 대상(자식요소) */
.child {
position: absolute;
width: 200px;
height: 200px;
top: 50%; /* 부모 요소 세로 길이의 절반만큼 이동 */
left: 50%; /* 부모 요소 가로 길이의 절반만큼 이동 */
transform: translate(-50%, -50%); /* 자기 가로 세로 크기의 절반만큼 이동 */
}