국비지원 JAVA 풀스택 과정/HTML+CSS3
[HTML+CSS3] 박스속성 (2)
ODaram
2022. 9. 27. 14:54
박스 속성
박스 속성
① display: flex;
(자식요소의) 박스의 유형을 플랙스 박스로 지정
② justify-content: center;
(자식요소의) 아이템 박스의 수평 정렬을 지정
③ align-items: center;
(자식요소의) 아이템 박스의 수직 정렬을 지정
<!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:400px;
background:olive;
}
</style>
</head>
<body>
<div class="container">
<div class="box"></div>
</div>
</body>
</html>