css 미디어쿼리
본문
1920 x 1080
1920 x 1200 이 두개 해상도 별 미디어 쿼리를주려고
@media all and (max-device-height : 1080px) {
.swiper-container img {width:100%; margin-top: 23px; }
}
@media all and (max-device-height : 1200px) {
.swiper-container img {width:100%; margin-top: -34px; }
}
이렇게했는데 왜 1200꺼로만 다 먹히는지 알수잇을까요?ㅠ
그리고 예전에 troy 같은 해상도별 사이트 비교하는 데 있을까요?
답변 1
css 구문은 원래 아래가 적용되구요,
.test {color:red;}
.test {color:blue;}
라고 두줄 써놓으면 아래에 있는 blue 가 적용되겟죠,
max 1200 이면 1200이하로는 다 먹히는상태인데,
만약 1000px 인 경우 max 1080 짜리가 먹힘과 동시에
아래에 max 1200 짜리로 덮어씌워져서 그런거고,
1080 부분을 아래로 내리세요
답변을 작성하시기 전에 로그인 해주세요.