
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
image 1, 2는 photo- frame에 맞게 나오는데
image3,4는 크게 나옵니다.
photo-frame에 background-size를 cover로 했는데도요.
작성한 코드 및 에러 메세지
.photo-frame {
background-color: white;
margin: 15px 20px;
height: 200px;
background-size: cover;
}
.footer {
display: flex;
flex-direction: column;
align-items: center;
}
.f-title {
font-size: 25px;
font-weight: 900;
color: white;
}
.f-date {
font-size: 15px;
font-weight: 500;
color: white;
}
#image1 {
background-image: url(./image1.jpg);
}
#image2 {
background-image: url(./image2.jpg);
}
#image3 {
background-image: url(./image3.jpg);
}
#image4 {
background-image: url(./image4.jpg);
}
</style>
</head>
<body>
<div class="container">
<div class="photos">
<div id="image1" class="photo-frame">
<span id="desc1" class="photo-description">
첫 번째 이미지 설명
</span>
</div>
<div id="image2" class="photo-frame">
<span id="desc2" class="photo-description">
두 번째 이미지 설명
</span>
</div>
<div id="image3" class="photo-frame">
<span id="desc3" class="photo-description">
세 번째 이미지 설명
</span>
</div>
<div id="image4" class="photo-frame">
<span id="desc4" class="photo-description">
네 번째 이미지 설명
</span>
</div>
</div>
<div class="footer">
<p class="f-title">You're beautiful!</p>
<p class="f-date">2023.02.18</p>
</div>
</div>
</body>
</html>오류 발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
