media query1 CSS 미디어 쿼리 min-width, max-width 차이 min-width: 1000px, 1000px 이상인 경우에 적용 max-width: 1000px, 1000px 이하인 경우에 적용 작성 순서 (모바일 퍼스트) 기본 CSS 작성 (모바일, portrait) 모바일, landscape 태블릿 데스크톱 대형 뷰포트 데스크톱 모바일 퍼스트(min-width) /* Default CSS */ /* Mobile - Portrait */ /* Mobile - Landscape */ @media (min-width: 576px) {} /* Tablet */ @media (min-width: 768px) {} /* Desktop */ @media (min-width: 992px) {} /* Desktop (Large) */ .. 2022. 3. 16. 이전 1 다음