css3 - media query only for iphone 6s plus -


is there media query target iphone 6s plus. code working fine on iphone 6plus there issue in iphone 6s plus. there way write specific media query iphone 6s plus.

any appreciated.

for landscape

@media screen      , (min-device-width : 414px)      , (max-device-width : 736px)     , (width : 736px)      , (orientation : landscape)      , (color : 8)     , (device-aspect-ratio : 414/736)     , (aspect-ratio : 736/414)     , (device-pixel-ratio : 3)     , (-webkit-min-device-pixel-ratio : 3)     { } 

portrait

@media screen      , (min-device-width : 414px)     , (max-device-width : 736px)     , (width : 414px)     , (height : 736px)     , (orientation : portrait)      , (device-aspect-ratio : 414/736)     , (aspect-ratio : 414/736)     , (device-pixel-ratio : 3)     , (-webkit-min-device-pixel-ratio : 3)     { } 

Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -