작성
·
271
1
* {
margin: 0;
padding: 0;
}
#header {
height: 64px;
border-bottom: 1px solid gray;
display: flex;
justify-content: center;
}
#body {
height: 100%;
width: 1024px;
margin: 0 auto;
padding-bottom: 24px;
}
#footer {
height: 200px;
background-color: red;
}
#banner {
height: 300px;
background-color: yellow;
}
#header-area {
width: 1024px;
height: 100%;
display: flex;
align-items: center;
}
#header-area > img {
width: 128px;
height: 36px;
}
#banner > img {
width: 100%;
}
#body > h1 {
margin-top: 16px;
}
#product-list {
display: flex;
flex-wrap: wrap;
}
.product-card {
width: 180px;
height: 300px;
margin-right: 12px;
margin-bottom: 12px;
border: 1px solid black;
border-radius: 12px;
}
.product-img {
height: 210px;
width: 100%;
}
.product-contents {
display: flex;
flex-direction: column;
padding: 8px;
}
.product-name {
font-size: 14px;
}
.product-price {
font-size: 16px;
font-weight: 600;
margin-top: 4px;
}
.product-seller {
display: flex;
align-items: center;
margin-top: 12px;
}
.product-avator {
width: 24px;
}
아무리 소스를 봐도 동일하게 해서 원인을 찾을수가 없어요
혹시 원인을 알수있을까요??
코드도 같이 올려드립니다.
안녕하세요 혹시 어떤문제인지 알아내셨나요 ?!?!
저도 똑같은 부분에서 원인을 알수가 없어서요 ㅠㅠ.