gpt4 book ai didi

css - 字体被 firefox 和 chrome 侵 eclipse

转载 作者:太空宇宙 更新时间:2023-11-04 16:11:12 26 4
gpt4 key购买 nike

我在 Windows 上的 Firefox 和 Chrome 中遇到了非系统字体的问题。这种字体是 Corbel。在 windows 上使用 Safari 和 Explorer 是可以的,在 Mac 上使用 firefox 和 Safari 也可以,但是在 windows 上使用 firefox 和 Chrome 字体会被腐 eclipse 和扭曲。我不知道为什么...我尝试将 font-weight 和 font-style 设置为正常,但没有任何改变!字体是用 font-face css 插入的。这里是 css 代码..

#menuWrapper ul li a {
font-family: 'Corbel';
color:#838484;
font-size:10px;
line-height:10px;
text-decoration:none;
}

谢谢!!!

最佳答案

您可能想要使用 CSS3 的 @font-face 属性。

@font-face 
{
font-family: Corbel; src: url('Corbel.otf'/*whatever ext*/);
}

myElement
{
font-family: Corbel, sans-serif;
}

使用它可以确保您的自定义字体从您的域加载并能够被调用。确保字体的路径也正确。

:)

关于css - 字体被 firefox 和 chrome 侵 eclipse ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8353636/

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