wkhtmltopdf不保留布局

时间:2016-09-22 20:41:41

标签: html css pdf layout wkhtmltopdf

我尝试使用自定义网格布局(https://jsfiddle.net/nvhk3vp9/)将简单的HTML页面转换为PDF,使用whtmltopdf 0.12.3在Linux 64位上使用这个简单的命令:

wkhtmltopdf index.html output.pdf

但是,生成的PDF文件不会产生所需的结果: enter image description here

我错过了什么吗?

修改1 : 更改为vhvw度量单位后,输出已得到改善,但结果尚未达到预期效果: enter image description here

1 个答案:

答案 0 :(得分:0)

您是否尝试使用vh

.col {
  float: left;
  width: 25%;
  height: 25vh;
  border: 1px solid;
  display: inline-block;
}