0

the site is https://mizore.site

  1. on safari, the font-size is too big img
  2. on other img

It's only happend on ios safari, It display correctly on ipad safari, ios's other browsers.

I have no Mac, so I use inspect.dev to debug it, found the p font-size is 24px

inspect.dev debug img

Hope anyone can help me!

Mizore
  • 11
  • 3
  • Hope this will help you. I found this also in Stack overflow https://stackoverflow.com/a/3466445/19100039 – ajw99 May 26 '22 at 02:20

1 Answers1

1

I think you need this in the CSS

html {
-webkit-text-size-adjust: none; /* Prevent font scaling in landscape */

}

ajw99
  • 26
  • 5