我通过wkhtmltopdf
gem使用wicked_pdf
(11.0_rc1)。我注意到多列布局不适合分页符。
我还注意到CentOS(在Heroku上)和Windows之间的行为有所不同。在Windows上,在某些情况下可以使用分页符。
你以前遇到过这样的问题吗?任何帮助都非常感谢。
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type='text/css'>
.page {
page-break-after:always !important;
clear:both;
display:block;
}
#content {
width: 800px;
}
</style>
</head>
<body>
<div id="content">
<div class="page">
<div style="float:left;width:200px;">
DESCRIPTION 1
</div>
<div style="float:left;">
PIE CHART IMAGE 1
</div>
</div>
<div class="page">
<div style="float:left;width:200px;">
DESCRIPTION 2
</div>
<div style="float:left;">
PIE CHART IMAGE 2
</div>
</div>
<div class="page">
<div style="float:left;width:200px;">
DESCRIPTION 3
</div>
<div style="float:left;">
PIE CHART IMAGE 3
</div>
</div>
</div>
</body>
</html>