/* 스마트폰 가로+세로 */
@media only screen and (min-device-width : 320px) and
(max-device-width : 480px){
}
/* 스마트폰 가로 */
@media only screen and (min-width : 321px) {
}
/* 스마트폰 세로 */
@media only screen and (max-width : 320px) {
}
/* 갤럭시탭+iPad 가로+세로 */
@media only screen and (min-device-width : 768px)
and (max-device-width : 1024px) {
}
/* 갤럭시탭+iPad 가로 */
@media only screen and (min-device-width : 768px)
and (max-device-width : 1024px) and (orientation : landscape) {
}
/* 갤럭시탭+iPad 세로 */
@media only screen and (min-device-width : 768px)
and (max-device-width : 1024px) and (orientation : portrait) {
}
/* 데스크탑 브라우저 가로 */
@media only screen and (min-width : 1224px) {
}
/* 큰 모니터 */
@media only screen and (min-width : 1824px) {
}
/* iPhone4와 같은 높은 해상도 */
@media
only screen and
(-webkit-min-device-pixel-ratio : 1.5),
only screen and
(min-device-pixel-ratio : 1.5) {
}
'web standard > responsive web' 카테고리의 다른 글
반응형웹의 시작 (0) | 2012.03.19 |
---|