Answers for "media query landscape mobile doesn't work"

CSS
2

media queries css not working for mobile

<meta name="viewport" content="width=device-width,initial-scale=1.0">
Posted by: Guest on June-08-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 "media query landscape mobile doesn't work"

Browse Popular Code Answers by Language