在在线服务器上使用wkhtmltopdf生成pdf时更改了字体

时间:2018-07-02 01:49:58

标签: php html css wkhtmltopdf

我用wkhtml2pdf和Arial字体创建了pdf,而在本地生成则没有关系。但是在在线生成时,字体更改为Times New Roman。

代码CSS

 .div1 {
    font-family: Arial;
    font-size: 10px;
    padding-left: 5px;
    padding-top: 0px;
    }

2 个答案:

答案 0 :(得分:0)

尝试一下

.div1 {
font-family: Arial!important;
font-size: 10px;
padding-left: 5px;
padding-top: 0px;
}   

希望这会有所帮助。

答案 1 :(得分:0)

有点晚了,但我使用它并且工作正常......

<head>
  <meta charset="UTF-8">
  <style>
  body{
    font-family:Arial, sans-serif;
  }
  </style>
</head>
<body>
<h1>Hi!</h1>
</body>

key 在 head 标签内的元字符集中