채택완료

반응형 질문입니다

본문에 768px 이상이면

첨부파일 1 이미지 출력 이하라면 첨부파일 2 이미지 출력하고 싶어요

방법이 있을까요?

|

답변 1개 / 댓글 1개

채택된 답변
+20 포인트

Copy
<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>

답변에 대한 댓글 1개

정말 감사합니다 잘 돼요~

답변을 작성하려면 로그인이 필요합니다.