css 관련 질문 드립니다.
본문
안녕하세요
현제 사이트를 만들고 있는데요
아래 이미지 처럼 오른쪽에 텍스트와 버튼이 지금 설정된 곳에 하단에 고정 하려고 하는데 이게 잘 안되어서요 글 줄수가 늘어도 하단은 고정이 되게 하고 싶어서요 자꾸 위 아래로 왔다갔다 하니깐 좀 가독성이 없어 보여서요
혹시 도와 주시면 감사 드리겠습니다.
지금 만들고 있는 주소 입니다. https://boramwon.homweb.co.kr/index.php
답변 2
@media (min-width:1500px) {
.cpt_box_02 {
/* margin-bottom: 25px; */
display: flex;
margin-top: 25px;
justify-content: space-between;
align-items: flex-end;
border-bottom: 1px dashed #979797;
}
.cpt_box_02 .cpt_box_ri {
/* float: left; */
width: 55%;
background-repeat: no-repeat;
}
.cpt_box_02 .cpt_box_le {
/* float: right; */
width: 30%;
/* margin-left: 2%; */
/* padding-top: 196px; */
}
/* ... other rules ... */
}
[code]
@media (min-width: 1500px)
.cpt_b2_01 .cpt_box_ri {
width: 100%;
height: 526px;
background-image: url(./img/ss_1.png);
background-position: center center;
}
@media (min-width: 1500px)
.cpt_box_02 .cpt_box_ri {
float: none;
width: 100%;
background-repeat: no-repeat;
}
@media (min-width: 1500px)
.cpt_box_02 .cpt_box_le {
float: none;
width: 100%;
margin-right: 0;
padding-top: 16px;
text-align: center;
}
[code]
해상도별 설정에서 height: 526px; 이 부분만 각각 다르게 해서 하면 될 것입니다.
답변을 작성하시기 전에 로그인 해주세요.