Skip to content Skip to sidebar Skip to footer

Font-sizing Issue When Rotate From Portrait To Landscape

solved it: -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */ I have a small font-sizing issue when rotating from portrait to landsc

Solution 1:

Try to use this media queries:

@mediaonly screen and (-webkit-min-device-pixel-ratio: 2)      and (max-width: 1025px),
only screen and (   min--moz-device-pixel-ratio: 2)      and (max-width: 1025px),
only screen and (     -o-min-device-pixel-ratio: 2/1)    and (max-width: 1025px),
only screen and (        min-device-pixel-ratio: 2)      and (max-width: 1025px),
only screen and (                min-resolution: 192dpi) and (max-width: 1025px),
only screen and (                min-resolution: 2dppx)  and (max-width: 1025px) {
  body {
    font-size: 18px; 
  }
}

For iPhone7 I use this media query:

@mediaonly screen 
and (device-width : 375px) 
and (-webkit-device-pixel-ratio : 3) {
  body {
    font-size: 18px; 
  }
}

Also, you can combine this media queries to resolve your issue.

Post a Comment for "Font-sizing Issue When Rotate From Portrait To Landscape"