[PHP & TCPDF] How to center html table?
- by user198003
Trying to create proper PDF document, using PHP and TCPDF. 
Can you help me, how can I use writeHTML function to create and center table, in TCPDF?
Tryed with:
 $html = '
 <div style="margin-left: auto; margin-right: auto; width: 50%">
  <table border="1" width="200" align="center"><tr><td><b>Invoice number: '.$this->xInvoiceNumber.'</b></td></tr></table>
  <br />
  <table border="1" width="200" align="center"><tr><td>'.$this->xClient.'</td></tr></table>
  <br />
 </div>
... but no luck.