Sources in iOS terminals

0

The other day I reported an error regarding the fonts I use on a web page. I show you an image of how that problem is displayed:

As you can see in the image, the tíldes and ñ are seen without the typography of the letter. True, but only with iOS devices that have been able to check (iPhone).

So I took another device (Android this time), and that problem does not play. In desktop version this problem does not happen either in Firefox, Chrome, Safari, IE ...

In other answers, they commented on improving in <meta charset="utf-8"> by <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> but it did not solve anything. The problem does not seem to be that tag, since the fonts are rendered well in all other OS and devices.

Any reason why he does that? And how can I solve it?

    
asked by Cheshire 13.06.2017 в 17:55
source

1 answer

0

I do not know if it will be the case, but I had the same problem when viewing my projects on iOS devices, I fixed it by applying this rule in a general way:

* {
 -webkit-font-smoothing: antialiased;
}
    
answered by 14.06.2017 в 10:51