我正在尝试使用 Google 网络字体作为替代字体。但它不是替代字体,而是充当主要字体。
在我的 中,我将它链接到字体:
<link href='http://fonts.googleapis.com/css?family=Balthazar' rel='stylesheet' type='text/css'>
在我的 CSS 中,我有 Copperplate 字体的变体,我知道它可以在我的 PC 上运行,并且我已经安装了其中的一些。这部分在我的 CSS 开头:
.class{
font-size: 24pt;
font-family: Copperplate Gothic Bold, Copperplate Gothic Light, Copperplate, Balthazar;
}
但即使 Balthazar 是最后一种字体,它也会作为第一种出现。我如何解决这个问题?