JavaScript/DreamCoding

Media Queries

느리지만 꾸준하게 2021. 7. 1. 16:21

Media Queries

desktop은 section 하나에 content 3개

tablet은 section 하나에 content 2개

mobile은 section 하나에 content 1개

중요한, 좀 더 강조하고자 하는 내용들을 위로 올려서 표현 할 수 있다.

 

desktop, tablet, mobile을 구분짓는 breakpoint가 존재하지는 않는다.

 

굳이 구분짓자면

mobile은 320px ~ 480px

tablet은 768px ~ 1024px

desktop은 1024px~

'JavaScript > DreamCoding' 카테고리의 다른 글

EventTarget_Node  (0) 2021.07.12
DOM(Document Object Model)  (0) 2021.07.12
DreamCoding_12_async / await 개념파악  (0) 2021.06.30
DreamCoding_9_JSON 개념정리  (0) 2021.06.29
자바스크립트 객체 복제 방법  (0) 2021.06.29