div 태그 screen 화면 중앙 center 에 보여주기
Flexbox를 사용하면 크기에 관계없이 align-items부모 요소의 속성을 사용하여 요소를 세로로 정렬 할 수 있습니다 . justify-content 은 수평 중심 조정이 용이합니다.
css
.flex-container{
width: 100%;
height: 100vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.greenbox {
background: limegreen;
text-align: center;
padding: 2em;
}
html
<div class="flex-container">
<div class="greenbox">Some arbitrary content<br> that will set the dimensions of the div</div>
</div>