

위 아이템을 수직 중앙 정렬하는 방법은 무엇일까?
.container {
width: 600px;
height: 400px;
background-color: gainsboro;
position: relative;
}
img {
width: 150px;
position: absolute;
top: 0;
bottom: 0;
margin: auto;
}
↓

.container => position: relative;
img => position: absolute;
top: 0; bottom: 0;
margin: auto;
그렇다면 위 아이템을 수평 중앙 정렬하는 방법은 무엇일까?
.container {
width: 600px;
height: 400px;
background-color: gainsboro;
position: relative;
}
img {
width: 150px;
position: absolute;
left: 0;
right: 0;
margin: auto;
}
↓

left: 0; right: 0;
margin: auto;
img {
width: 150px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
↓

완료!