Answers for "landscape phone screen not responsible css"

1

responsive on small screen but not phone

<meta name="viewport" content="width=device-width, user-scalable=no">
Posted by: Guest on May-22-2020
0

media query for mobile landscape only

@media screen and (orientation:landscape) and
(min-device-width: 320px) and (max-device-width: 450px) {
   /* Input Styles */
}
Posted by: Guest on March-02-2021

Code answers related to "landscape phone screen not responsible css"

Browse Popular Code Answers by Language