/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* 스마트í°ì—서만 ì ìš©ë˜ëŠ” CSS. HTC Desire HD는 가로 모드ì—ì„œ íì´ 533px. */ @media only screen and (min-device-width:320px) and (max-device-width:569px) { /* style */ } /* ìŠ¤ë§ˆíŠ¸í° ê°€ë¡œ */ @media only screen and (min-width:480px) { /* style */ } /* ìŠ¤ë§ˆíŠ¸í° ì„¸ë¡œ */ @media only screen and (max-width:320px) { /* style */ } /* iPhone 4 등 ê³ í•´ìƒë„ */ @media only screen and (-webkit-min-device-pixel-ratio:1.5), only screen and (-o-min-device-pixel-ratio:3/2), only screen and (min-device-pixel-ratio:1.5) { /* style */ } /* iPad 가로 */ @media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape) { /* style */ } /* iPad 세로 */ @media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) { /* style */ }