
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
강의에서 나온 내용 그대로 따라했는데
결과물이 달라서 질문합니다 ㅠㅠ
혹시나 오타가 있나 확인을 해봤는데도 잘 모르겠어요!! ㅜㅜ 도와주세요!
작성한 코드 및 에러 메세지
<!DOCTYPE html>
<html lang="en">
<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>2023 버킷리스트</title>
<style>
.title {
color: white;
background-color: tomato;
font-size: 24px;
padding: 4px 14px;
border-radius: 8px;
}
.bg {
width: 360px;
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bg-grid.png");
}
.msg {
font-weight: bold;
}
.bucket. {
width: 160px;
height: 160px;
}
.img1 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-red.png");
background-size: cover;
background-position: center;
}
.img2 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-lightred.png");
background-size: cover;
background-position: center;
}
</style>
</head>
<body class="bg">
<h1 class="title">2023 신년계획</h1>
<p class="msg">나이도 어려지는데 이뤄보자!</p>
<div class="row">
<div class="bucket img1">살 10kg 빼기</div>
<div class="bucket img2">살 10kg 빼기</div>
<div class="bucket img2">살 10kg 빼기</div>
<div class="bucket img1">살 10kg 빼기</div>
<div class="bucket img1">살 10kg 빼기</div>
<div class="bucket img2">살 10kg 빼기</div>
</div>와 에러 메시지를 첨부해 주세요.
