

메인페이지에서 컨트롤+F5 또는
임시파일 제거 한번 해보세요.
PC에서는 50% / 50% 로 나와야하고
모바일에서는 100% / 100% 로 보이면 정상 입니다.
/* 레이아웃 CSS */
.flex_box_l {float:left; width: 50%;}
.flex_box_r {float:right; width: 50%;}
@media all and (max-width:1024px) {
.flex_box_l {width: auto; float:none;}
.flex_box_r {width: auto; float:none;}
}
css파일에서 이렇게 하셨다면 적용이 되야 정상입니다.
감사합니다.
2024-10-29 05:34