Answers for "landscape mobile media query"

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
0

mediaquery for portrate

@media (orientation: portrait) {
  body {
    flex-direction: column;
  }
}
Posted by: Guest on November-09-2020
1

media query css for all devices

@media (min-width: 600px) and (max-width: 800px) {

/* your css code here  */

/* html { background: red; } */


}
Posted by: Guest on November-03-2020

Code answers related to "landscape mobile media query"

Browse Popular Code Answers by Language