Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了一个问题,即我通过 CSS 导入的一些自定义字体在中文浏览器中无法正确显示。
例如,当我安装了中文版 Chrome 时,字体会比平时大。我应该怎么做才能让字体像英文浏览器一样显示?
谢谢
您可以使用:lang伪类来定位 css 中的特定语言。
:lang
因此,例如,您可以添加lang="en"html 标记。
lang="en"
然后在 CSS 中:
:lang(en) body { font-size: ...; }