TCPDF并排表

时间:2016-09-29 06:27:05

标签: php html-table inline tcpdf

我正在使用TCPDF打印一些文档记录。但我的第二个表总是在第一个表的底部(就像图像一样)。我需要让第二个位于第一个表的左侧。任何代码战士请......:)

enter image description here

到目前为止,这是我的代码......

enter image description here

1 个答案:

答案 0 :(得分:1)

如果你想要一个并排的表,你必须创建一个宽度为100%的父表和一对" tr"和2对" td"并且,在每个" td"另一张桌子。这是草案:

<table width="100%" cellpadding="0" border="0">
    <tr>
        // Left side Table
        <td width="50%">
            <table width="100%" border="1">
                <tr><td>Data goes here</td></tr>
            </table>    
        </td>

        // Right side Table
        <td width="50%">
            <table width="100%" border="1">
                <tr><td>Data goes here</td></tr>
            </table>   
        </td>
    </tr>
</table>

看来你的每个组使用writeHTML,为什么不只使用一个并将父表应用于两个子表,你只需要使用concat。