我对 WebKit 报告.mako
文件有疑问。当我使用:
<html>
<head>
<style type="text/css">${css}</style>
</head>
<body>
% for o in objects:
<p style="font-family:'Free 3 of 9';">${o.name}</p>
% endfor
</body>
</html>
在.mako
文件中它正在工作,但如果我使用
<html>
<head>
<style type="text/css">${css}</style>
</head>
<body>
% for o in objects:
<p class="barcode39">${o.name}</p>
% endfor
</body>
</html>
并且这个类data.xml
在report_webkit的“css”字段中声明
.barcode39 {
font-family: 'Free 3 of 9';
font-size: 36;
color: red;
}
font-family: 'Free 3 of 9'
不起作用。如果我使用另一个font-family
它正在工作。可能是什么问题呢?
我已将字体放入/usr/share/fonts/truetype
并运行fc-cache -fv
. 提前致谢。