您可以查看以下代码段,问题是Roboto无法在firefox上正确显示希腊字符。
body {
font-family: Roboto, sans-serif;
}
<link href="http://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<h1>This is a test</h1>
<h1>Αυτό είναι ένα τεστ</h1>
答案 0 :(得分:1)
你需要添加子集“greek”(我在这个案例中添加了希腊扩展)
body {
font-family: Roboto, sans-serif;
}
<link href='http://fonts.googleapis.com/css?family=Roboto&subset=latin,greek-ext,greek' rel='stylesheet' type='text/css'>
<h1>This is a test</h1>
<h1>Αυτό είναι ένα τεστ</h1>
<强> P.S。 - 如何自动执行此操作?
在第2步here
中答案 1 :(得分:1)
您似乎需要在字体API调用中添加正确的子集。请尝试使用此
http://fonts.googleapis.com/css?family=Roboto&subset=latin,greek-ext,greek
这似乎对我在firefox中有用。