[CSS] Content 화면 중앙배치

 

화면의 상단에 배치되어 있는 것을 화면 중앙에 배치해보도록 하겠다. 

 

  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;

 

 

 

 width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;