luni, noiembrie 25, 2024
AcasăTutoriale DesignMedia Queries pentru iPhone 6 si iPhone 6 Plus

Media Queries pentru iPhone 6 si iPhone 6 Plus

iPhone 6 – portrait & landscape

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) { /* AICI VINE SCRIS CODUL CSS */}

iPhone 6 – landscape

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) { /* AICI VINE SCRIS CODUL CSS */}

iPhone 6 – portrait

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : portrait) { /* AICI VINE SCRIS CODUL CSS */ }

iPhone 6 Plus – portrait & landscape

@media only screen 
and (min-device-width : 414px) 
and (max-device-width : 736px) { /* AICI VINE SCRIS CODUL CSS */}

iPhone 6 Plus – landscape

@media only screen 
and (min-device-width : 414px) 
and (max-device-width : 736px) 
and (orientation : landscape) { /* AICI VINE SCRIS CODUL CSS */}

iPhone 6 Plus – portrait

@media only screen 
and (min-device-width : 414px) 
and (max-device-width : 736px) 
and (orientation : portrait) { /* AICI VINE SCRIS CODUL CSS */ }
RELATED ARTICLES

Most Popular

Recent Comments