我正在尝试在打印页面上使用自定义字体。由于某种原因,这些自定义字体在pdf查看器上不起作用,但在普通的html页面上起作用。甚至可以为pdf查看器设置自定义字体吗?
我试图这样设置这些自定义字体:
@font-face {
font-family: 'bentonsansbold';
src: url('../fonts/BentonSans-Bold.ttf') format('truetype'),
url('../fonts/BentonSans-Bold.woff') format('woff'),
url('../fonts/BentonSans-Bold.woff2') format('woff2'),
url('../fonts/BentonSans-Bold.eot') format('embedded-opentype'),
url('../fonts/BentonSans-Bold.svg') format('svg');
font-weight: normal;
font-style: normal;
}
p {
font-family: 'bentonsansregular';
}