使用wkhtmltopdf转换后,是否可以在pdf的整个高度添加背景颜色?
这条css规则:
html,body {
height: 100%;
backgorund-color: #ff0000;
}
不起作用:))
自动生成转换后的html。它有1到3页。
答案 0 :(得分:0)
这对我很有用:
#test.html
<html>
<body style="background-color:#E6E6FA">
<h1>Hello world!</h1>
</body>
</html>
并运行命令 -
wkhtmltopdf --margin-bottom 0 --margin-top 0 test.html test1.pdf
有关更多wkhtmltopdf选项,请查看此manual