Rutvik Tailor
Rutvik Tailor

Reputation: 23

Display Different font-size for safari mobile web

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

Answers (1)

Salah Akbari
Salah Akbari

Reputation: 39966

Try this in your CSS:

@media screen and (max-device-width: 480px){
   body{
     -webkit-text-size-adjust: none;
  }
}

Upvotes: 2

Related Questions