我在我的网站上使用铜板哥特式字体,但它在firefox 21.0中无法正常工作。相反,它在firefox 20.0.1中正常工作。可能是什么问题?
提前致谢!
答案 0 :(得分:0)
如果您正在使用
{
font-family: Copperplate / Copperplate Gothic Light;
}
那应该有用。如果它现在正在工作,虽然你已经把正确的代码。请尝试使用Google WebFonts。 www.google.com/webfonts/specimen/Balthazar是Copperplate哥特式的最佳google网络字体替代品。 以下是使用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>