Create multi-column layouts using columns
masterTo utilize PDFMake's columns feature, wrap your content in a div with the attribute data-pdfmake-type="columns". You can then use data-pdfmake on child divs to control their relative widths (e.g., using "*" for flexible width).
<!-- Example to center a table in the page -->
<div data-pdfmake-type="columns">
<div data-pdfmake='{"width":"*"}'></div>
<div style="width:auto">
<table>
<tr><th>Table</th></tr>
<tr><td>Centered</td></tr>
</table>
</div>
<div data-pdfmake='{"width":"*"}'></div>
</div>