为什么有些瘦弱的角色机器人?

时间:2018-11-21 12:05:55

标签: css fonts roboto

ı使用“ roboto”和“ san-serif”,普通文本“A.Ş”错误文本-> enter image description here

2 个答案:

答案 0 :(得分:1)

这是因为您的字体没有该字符(Ş),所以它使用具有该字符的默认字体。如果 san-serif 不是这里的错字,则应将其更改为 sans-serif

答案 1 :(得分:0)

使用googleapis中的字体,它将起作用

   body {
      font-family: 'Roboto', sans-serif;
      font-size: 48px;
      font-weight: bold;
    }
 <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
 
 <p>A.Ş</p>

相关问题