我的问题很简单,症状很奇怪。
在我的 HTML 的头部,我包含了直接从 Google Font 加载字体的代码。
<link href="https://fonts.googleapis.com/css?family=Roboto:700" rel="stylesheet">
这是我的 CSS:
.text {
font-family: 'Roboto', sans-serif;
color: white;
font-size: large;
}
无论我选择什么自定义,字体似乎都是正常的字体。我尝试使用 Roboto Thin (Roboto:100) 和 Roboto Thin Italic (Roboto:100i) 但它们都没有真正改变。
我的代码中有什么遗漏的吗?