铜版哥特光在firefox 21.0中不工作


Copperplate gothic light not working in firefox 21.0

我在我的网站中使用铜板哥特式字体,但它在firefox 21.0中不能正常工作。相反,它在firefox 20.0.1中正常工作。问题是什么呢?

提前感谢!

如果使用

{
font-family: Copperplate / Copperplate Gothic Light;
}

应该可以。如果它现在工作,虽然你已经把正确的代码。请尝试谷歌网页字体。www.google.com/webfonts/specimen/Balthazar是最好的谷歌网页字体替代铜板哥特。下面是一个使用google网页字体的示例代码。

<html>
  <head>
    <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Balthazar">
    <style>
      body {
        font-family: 'Balthazar', serif;
        font-size: 48px;
      }
    </style>
  </head>
  <body>
    <div>This looks like Copperplate font in all browsers.!</div>
  </body>
</html>