반응형 질문입니다
본문
본문에 768px 이상이면
첨부파일 1 이미지 출력 이하라면 첨부파일 2 이미지 출력하고 싶어요
방법이 있을까요?
답변 1
<style>
@media only screen and (max-width: 767px) {
.file1 {display:none}
}
@media only screen and (min-width: 768px) {
.file2 {display:none}
}
</style>
<div class="file1">첨부파일1</div>
<div class="file2">첨부파일2</div>
답변을 작성하시기 전에 로그인 해주세요.