본문 바로가기

CSS/learned_it_today

모달(modal) viewport 중앙에 위치 시키기

body{
	width:100%;
	height:100vh;
}
.modal{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}