safari 中的土耳其语字符不在正确的字体系列中 html

turkish characters not in right font-family in safari html

safari 为土耳其语字符提供了另一种字体:http://eraplus.eu/hakkimizda.html

在 chrome 上看起来很完美。

谁能告诉我如何像 chrome 一样在 safari 上显示?

谢谢

<html lang="tr">
<head>
    <title>Eraplus Europe | Move for future</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="description" content="" />
    <meta name="keywords" content="" />

style.css

@charset 'UTF-8';
@import url("font-awesome.min.css");
@import url("http://fonts.googleapis.com/css?  family=Source+Sans+Pro:300,400,700,900,300italic");

body,input,textarea,select
{
    font-family: 'Source Sans Pro', arial, sans-serif;
    font-weight: 300;
    color: #5d5d5d;
}

Source Sans Pro 字体默认只包含 Latin 1 字母。要获得土耳其语中所需的所有字母,例如 ş 和 ğ,您需要将字符串 &subset=latin1,latin-ext 附加到您用来使用字体的 URL,如 [=12= 中所述] Google.

<style>
@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900,300italic&");
body,input,textarea,select
{
    font-family: 'Source Sans Pro', arial, sans-serif;
    font-weight: 300;
}
</style>
Testing: işbirliği 

确实,添加子集解决了这个问题!;

@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900,300italic&subset=latin,latin-ext");