[HTML&CSS] 박스 위치 연습문제개발자가 되기까지 (2023.08.16~2024.04.15)/[Basic] HTML & CSS2023. 10. 30. 00:55
Table of Contents
<Quest>
|
<조건> 1. 상단의 큰 박스 : height : 150px 2. 하단의 큰 박스 : 500*500px 3. 작은 박스 : 100*100px |
<Solve>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>box 위치 연습문제</title>
<style>
.top{
height: 150px;
background-color: rgb(14, 1, 24);
display: flex;
justify-content: space-between;
align-items: center;
}
.box{
width: 100px;
height: 100px;
background-color: rgb(20, 161, 102);
position: relative;
float: left;
}
.bottom{
width: 500px;
height: 500px;
background-color: midnightblue;
display: flex;
justify-content: center; /* 가로 기준 */
align-items: center; /* 세로 기준 */
}
.centerBox{
width: 100px;
height: 100px;
background-color: rgb(20, 161, 102);
}
</style>
</head>
<body>
<div class="top">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
<div class="bottom">
<div class="centerBox"></div>
</div>
</body>
</html>
<Result>
[HTML&CSS] 박스 위치 연습문제 끝!
(다음 게시물 예고편)
[HTML&CSS] z-index 연습문제
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!