SoYoung210 / soso-tip

🍯소소한 팁들과 정리, 버그 해결기를 모아두는 레포
24 stars 0 forks source link

중앙정렬 #37

Open SoYoung210 opened 4 years ago

SoYoung210 commented 4 years ago

Flex를 사용해도 되고, transform을 사용해도 된다.

transform

.parent{
 position:relative;
}
.child{
 position:absolute;
 top:50%;
 left:50%;
 transform: translate(-50%,-50%);
 background-color:#666;
}