如果我运行下面的代码,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>