본문 바로가기
프로그래밍-웹/반응형웹

[ flex ] 요소 정중앙에 배치하기

by 지연2 2022. 12. 30.
728x90

결과 화면

css

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.box{
    background-color: cadetblue;
    color: #fff;
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 200px;
    font-size: 2em;
}

 

html

<body>
    <div class="box">box</div>
</body>

댓글