我想使用Google Roboto字体,但是在IE11/Edge中看起来非常难看。这是我的示例代码:

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <link href='http://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
    <title></title>
</head>
<body>
<div style="font-family: 'Roboto'">
    közötti műveleteire.
</div>


上方的文本显示在IE/Edge中,下方的是Chrome版本。 (字母very非常丑陋)如何在IE中正确使用Roboto?

html - 在IE 11/Edge中使用Roboto字体-LMLPHP

最佳答案

尝试改用它,看看是否可行:

<link href='http://fonts.googleapis.com/css?family=Roboto&subset=latin,greek,greek-ext,latin-ext,cyrillic' rel='stylesheet' type='text/css'>

关于html - 在IE 11/Edge中使用Roboto字体,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31923359/

10-10 01:59