[HTML&CSS] float 연습문제개발자가 되기까지 (2023.08.16~2024.04.15)/[Basic] HTML & CSS2023. 10. 30. 00:00
Table of Contents
<Quest>
<조건> 1. div p-box 안에 box3개 생성 2. 생성한 3개의 박스가 동일한 크기로 화면이 꽉차게 설정 (박스 3개가 나란히) |
<Solve>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>float 연습문제</title>
<style>
.p-box{
display: block;
clear: both; /* float 해제 */
height: 100vh; /* 화면 창 높이에 맞게 설정 (세로로 꽉 차게 함) */
}
.p-box>div{
width: calc(100%/3);
height: 100%;
float: left;
}
.box1{
background-color: rgb(147, 0, 0);
}
.box2{
background-color: rgb(196, 133, 133);
}
.box3{
background-color: rgb(183, 51, 51);
}
</style>
</head>
<body>
<div class="p-box">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
</body>
</html>
<Result>
[HTML&CSS] float 연습문제 끝!
(다음 게시물 예고편)
[HTML&CSS] position 연습문제
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!