我尝试使用cfhtmltopdf标记生成PDF文件。我正在使用coldfusion 16服务器。但是分页内部:避免;每次我的内容被激活时都不起作用。我怎样才能避免破坏问题?如果你知道有人有这个问题的解决方案,请帮助我。谢谢:))
<cfhtmltopdf>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<style>
.container{
margin: 20px;
border: 1px solid red;
page-break-inside: avoid !important;
}
</style>
</head>
<body>
<cfloop from="1" to="10" index="i">
<div class="container">
<div class="title">
Test Title
</div>
<div class="subtitle">
This is test sub title
</div>
<div class="shortdescription">
this is the test shortdescription. this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.this is the test shortdescription.
</div>
</div>
</cfloop>
</body>
</html>
</cfhtmltopdf>