gpt4 book ai didi

html - Google Web 字体字体粗细无法正确呈现

转载 作者:太空宇宙 更新时间:2023-11-03 23:42:09 25 4
gpt4 key购买 nike

我正在尝试在具有两种不同权重(300 和 800)的 html 页面中使用 Open Sans 网络字体。但这些权重之间的差异非常小(使用 IE11、Chrome 进行测试)。您可以在下面的图片中看到我得到的内容以及外观(来自 Google 字体网站)。

我的结果:

My result

Google 的结果:

Google result

我的 html 代码是:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>font test</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans&subset=latin,vietnamese' rel='stylesheet' type='text/css'>
<link href="styles/style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
Font Family: Open Sans <br />
font-weight 300: <span id="test">GGG</span><br />
font-weight 800: <span id="test2">GGG</span><br />
</body>
</html>

和CSS:

#test
{
font-family: 'Open Sans' !important;
font-style: normal !important;
font-weight: 300 !important;
font-size: 32px;
}

#test2
{
font-family: 'Open Sans' !important;
font-style: normal !important;
font-weight: 800 !important;
font-size: 32px;
}

最佳答案

我没看到你的权重

<link href='http://fonts.googleapis.com/css?family=Open+Sans&subset=latin,vietnamese' rel='stylesheet' type='text/css'>

替换为:

<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,800' rel='stylesheet' type='text/css'>

它会起作用。

http://codepen.io/anon/pen/KGhbt/

关于html - Google Web 字体字体粗细无法正确呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22583233/

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