2015-05-05 64 views
0

你可以檢查下面的代碼片段,問題是,Roboto不能在firefox上正確顯示希臘字符。Firefox - 谷歌字體,希臘語將無法與Roboto

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>

回答

1

這樣看來,你需要正確的子集添加到字體API調用。嘗試使用此代替

http://fonts.googleapis.com/css?family=Roboto&subset=latin,greek-ext,greek 

這似乎適用於我在Firefox中。

1

您需要添加的子集 「希臘」(我說希臘只是在情況下也延長)

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>

附: -你怎麼能自動做到這一點?

在步驟2 here