lang/css

iphone css media-query

C/H 2018. 4. 17. 15:25

/* iPhone < 5: */
@media screen and (device-aspect-ratio: 2/3) {
}

/* iPhone 5: */
@media screen and (device-aspect-ratio: 40/71) {
}

/* iPhone 6: */
@media screen and (device-aspect-ratio: 375/667) {
}

/* iPhone 6 Plus: */
@media screen and (device-aspect-ratio: 16/9) {
}

/* iPad: */
@media screen and (device-aspect-ratio: 3/4) {
}


반응형

'lang > css' 카테고리의 다른 글

css 가상 클래스(Pseudo classes), 가상 엘리먼트(Pseudo Elements)  (0) 2021.10.16
bootstrap dl-horizontal  (0) 2016.08.11
부트스트랩 +iconmoon  (0) 2015.07.06
Div, Text 중앙, 가운데 정렬  (0) 2015.04.10
css hack  (0) 2014.03.04