gpt4 book ai didi

html - 干净的文本渲染

转载 作者:行者123 更新时间:2023-11-27 23:59:34 25 4
gpt4 key购买 nike

我在我的网站上使用“open sans”字体。但它呈现不清晰和肮脏的边缘字体。 下图

enter image description here

但我在其他一些网站上看到他们使用的是相同的 open sans 字体,但它非常干净且适合视网膜下图

enter image description here

为什么我的文字边缘不整齐不干净?

附加:我尝试禁用样式表代码,文本呈现清晰且视网膜就绪。但是我缺少什么?

最佳答案

我相信我知道如何解决这个问题...将其添加到您的 CSS 中:

body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}

我现在将它添加到我所有的网络元素中。它使字体看起来更清晰:)

Demo

此外,在使用网络字体时,有意指定字体粗细是个好主意。

h1 {
font-family: 'Open Sans';
font-weight: 300; /* 300 is the "light" version of the font, 400 would be "normal" */
}

关于html - 干净的文本渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22052431/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com