Reputation: 23
i am a web designer making responsive web design. All running well but problem is safari for iphone while i apply font-size of 16px it shows 23px in computed style sheet in debugger. Give me quick suggestions to solve that one. Thanks in advance.
Upvotes: 1
Views: 100
Reputation: 39966
Try this in your CSS:
@media screen and (max-device-width: 480px){
body{
-webkit-text-size-adjust: none;
}
}
Upvotes: 2