the code: ```<style type="text/css"> table, ...
# advancedpdf
p
the code:
Copy code
<style type="text/css">
table, th, tr {
	page-break-inside: avoid;
}
table {
	font-size: 15pt; line-height: 20px;
	table-layout: fixed; width: 3.5in; height: 2in;
	border: 0.5px solid black;
	display: inline-block; float: left;overflow: visible;
}
td {
  	padding: 10px 15px 0px 15px; align: center;
}
p.container {
	width: 50%; display: inline-block; float: left; overflow: visible;
}
</style>
</head>
<body padding="0.5in 0.5in 0.5in 0.5in" size="Letter">
    <#list results as result>
	<p class="container">
	<table>
      <tr height="0.4in" ><td><p><b>ITEM NUMBER</b></p></td></tr>
      <tr height="0.8in" ><td><p>BARCODE</p></td></tr>
      <tr height="0.8in" ><td><p>DESCRIPTION</p></td></tr>
	</table>
	</p>
	</#list>
</body>