<style>body {-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}</style> in the Project Settings' Head Code section. Webflow does not have a built-in toggle for -webkit-font-smoothing: antialiased, but you can apply it using custom CSS. Here's how to do it correctly within Webflow.
-webkit-font-smoothing Does-webkit-font-smoothing is a CSS property that controls the rendering of text on WebKit-based browsers (like Safari and older versions of Chrome).antialiased can make fonts appear thinner and cleaner, especially on macOS.
<style>body {-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}</style>
<style> block. For example:
<style>.my-text-class {-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}</style>
my-text-class in the Webflow Designer to the element you want to affect.
<style> tag (as above) inside the embed.
While Webflow doesn't offer a built-in setting for -webkit-font-smoothing: antialiased, you can easily add it via custom CSS in Project Settings or using Embed elements to control font rendering.