2013-03-30 4 views

답변

0
 @media screen and (device-aspect-ratio: 3/4) { 

      // your styles here 
    } 
1

그냥 같은 미디어 쿼리를 적용해야하므로 새로운 iPad는 제 1 및 제 2 아이 패드와 같은 폭과 높이가 :

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) { 
    .ipad-portrait { color: red; } /* your css rules for ipad portrait */ 
} 

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) { 
    .ipad-landscape { color: blue; } /* your css rules for ipad landscape */ 
} 
관련 문제