解决iphone横屏时字体变大问题或者内容大小不一样等

在样式表中增加:
@media screen and (max-device- 320px){body{-webkit-text-size-adjust:none}}
@media screen and (max-device- 480px){body{-webkit-text-size-adjust:none}}
@media only screen and (-webkit-min-device-pixel-ratio: 2){body{-webkit-text-size-adjust:none}}
@media only screen and (min-device- 768px) and (max-device- 1024px){body{-webkit-text-size-adjust:none}}
原文地址:https://www.cnblogs.com/peng14/p/3414882.html