1

如果我运行下面的代码,Josefine Sans 字体粗细 400 看起来比粗细 600 粗。谁能解释为什么会这样?

body {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
}
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:400,600" rel="stylesheet">
</head>

<body>
	<p style="font-weight:400;">The spectacle before us was indeed sublime.</p>
	<p style="font-weight:600;">The spectacle before us was indeed sublime.</p>
</body>
</html>

4

1 回答 1

0

在我的浏览器中,400 比 600 轻,所以这可能是特定于计算机的。

最可能的原因是您在本地/计算机上安装了错误或不完整的网络字体版本。

于 2017-10-14T18:02:02.367 回答