Re: PDF Export doesn't look right with tables

  •  08-25-2015, 9:52 AM

    Re: PDF Export doesn't look right with tables

    Hi,

     

    you need to set the width for the <td> , then it should shows correct in pdf too.

     

    <table border="0" cellspacing="2" cellpadding="2" width="500">
         <tbody>
             <tr>
                 <td width="200">1</td>
                 <td width="200">2</td>
             </tr>
             <tr>
                 <td>&nbsp;3</td>
                 <td>&nbsp;4</td>
             </tr>
         </tbody>

    </table>

     

    Regards,

     

    ken 

View Complete Thread