Bold special characters in Safari only

Asked

Viewed 107 times

1

Special characters like ã or ç are getting bold only in Safari version 13.

The site is meta tagged utf-8

<meta charset="utf-8">

For example: Choose them informsções... Select the optionseggs...

As already mentioned, this happens only in Safari, by Chrome and IE is all ok.

  • Have you looked at that question? https://stackoverflow.com/questions/44440283/special-characters-printed-bold-on-ios

  • Bertozalo thanks for the help, but if you see the solution proposed in this post, what the guy did was to change the font-family for a similar, you think it would be feasible to make a rgex instead of changing the font?

  • I don’t think so. I believe your problem lies in some stylization attribute.

2 answers

1

good afternoon! You copied and pasted this text from somewhere ex: Word? If yes try to rewrite it, as said in the link ->

https://stackoverflow.com/questions/25626519/semibold-accented-characters-bug

Turns out to be a problem with copying/ pasting Word - replace them with clean non-wordified characters, and the problem will be fixed.

You can also put these references in your website’s CSS:

-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

0

I thank those who tried to help me. But I managed to solve this problem by doing the following. The font extensions that were being used were woff2, converted to extension woffand it worked! Apparently Safari does not accept more current extensions.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.