简体   繁体   中英

Mac OS X Mojave Font thinner on Chrome - how to fix?

Every font is thinner on Mac OS X Mojave on Chrome. See references like ( here or here ).

That is my main problem and I need your suggestions what to do. I'm currently developing a website, but now the design looks way off. On Safari it's okay. But should I "wait" until there is a fix?

The reason is that they removed subpixel font aliasing.

What does this mean for a CSS developer?

Is there a fix somehow?

在终端中尝试此命令:

defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO

An easy fix I discovered was to disable the font smoothing disabler.

All you have to do is open up your Terminal application ( COMMAND (⌘) + SPACE then search for Terminal) and run the following command.

defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO

Here, I made a nice image of entering this thing in my terminal:

macos字体问题

EXPLANATION :

We are switching off the disabler which is disabling the font smoothing process on non-retina screens. In simple words enabling the font smoothing.

🙌 I wrote more details about how I found this setting in the fix macOS font post.

NEXT STEPS :

I recommend you restart your computer now, but logging out and in should fix it.

macos登出

You can also Log out with COMAND (⌘) + SHIFT (⇧) + Q .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM