728x90
1. reserve section
- height 400px
2. pick your favorate section (배경 고정)
- text-group width 362px
1. reserve section
<!-- RESERVE -->
<section class="reserve-coffee">
<div class="inner">
<img src="./images/reserve_logo.png" alt="" class="reserve-logo" />
<div class="text-group">
<img src="./images/reserve_text.png" alt="" class="description" />
<div class="more">
<a href="javascript:void(0)" class="btn btn--gold">자세히 보기</a>
</div>
</div>
<img src="./images/reserve_image.png" alt="" class="product" />
</div>
</section>
/* RESEVE */
.reserve-coffee {
background-image: url("../images/reserve_bg.jpg");
}
.reserve-coffee .inner {
height: 400px;
}
.reserve-coffee .reserve-logo {
position: absolute;
top: 100px;
left: 0;
}
.reserve-coffee .text-group {
position: absolute;
top: 100px;
left: 200px;
}
.reserve-coffee .text-group .title {
margin-bottom: 10px;
}
.reserve-coffee .text-group .description {
margin-bottom: 10px;
}
.reserve-coffee .product {
position: absolute;
top: 0;
right: 0;
}
2. pick your favorate section (배경 고정) 📌
<!-- PICK YOUR FAVORITE -->
<section class="pick-your-favorite">
<div class="inner">
<div class="text-group">
<img src="./images/favorite_text1.png" alt="" class="title">
<img src="./images/favorite_text2.png" alt="" class="description">
<div class="more">
<a href="javascript:void(0)" class="btn btn--white">자세히 보기</a>
</div>
</div>
</div>
</section>
/* pick-your-favorite */
.pick-your-favorite {
background-image: url("../images/favorite_bg.jpg");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
}
.pick-your-favorite .inner {
padding: 110px 0;
}
.pick-your-favorite .text-group {
width: 362px;
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
margin-left: 100px;
}
.pick-your-favorite .text-group .title {
margin-bottom: 40px;
}
.pick-your-favorite .text-group .description {
margin-bottom: 40px;
}
728x90
'FE' 카테고리의 다른 글
사각 이미지 원형에 넣기, 이미지에 그림자 삽입, 배경에 패턴 넣기 (0) | 2021.10.17 |
---|---|
3D 애니메이션으로 앞뒤 회전하기 (0) | 2021.10.17 |
유튜브 배경에 깔기 / 플로팅 애니메이션 반복 / 랜덤함수 (0) | 2021.10.17 |
섹션 안에 버튼 삽입 (0) | 2021.10.17 |
JavaScript 토글 보이기 숨김 기능 / 슬라이드 페이지네이션, 네비게이션 스타일 추가하는 방법 (0) | 2021.10.17 |