我想在一页上只显示pdf中的html。但它使它在多个页面上。 我试图添加css修改,但它没有工作。有很多选择可供选择,但无法找到适合的选项。
选项可用 https://github.com/mikehaertl/phpwkhtmltopdf http://wkhtmltopdf.org/usage/wkhtmltopdf.txt
PHP
$options = array(
'no-outline', // Make Chrome not complain
'margin-top' => 0,
'margin-right' => 0,
'margin-bottom' => 0,
'margin-left' => 0,
// Default page options
'disable-smart-shrinking',
'user-style-sheet' => PATH . '/assets/pdf.css',
);
pdf.css
table:first {
position: relative;
top: 1cm;
left: 1cm;
width: 2cm;
height: 1.6cm;
}
table {
font-size: 10px;
font-family: Arial;
}