<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>박스 속성</title>
<style>
.container {
display:flex; /*박스의 유형을 플랙스 박스로 지정*/
justify-content:center; /*아이템 박스의 수평 정렬을 지정*/
align-items:center; /*아이템 박스의 수직 정렬을 지정*/
width:100%; height:100vh;
background:orange;
}
.box {
width:400px; height:250px;
background:olive;
}
</style>
</head>
<body>
<div class="container">
<div class="box"></div>
</div>
</body>
</html>
결과
