tcpdf没有拿起div的边界

时间:2012-10-03 14:13:14

标签: php tcpdf

我正在使用tcpdf在我的某个项目中生成PDF文件,并且它没有拾取div的边框。但是当我在相同的布局中使用表格时,它正在拾取边框。

你可以在tcpdf中建议我为css做些什么吗?

或者在tcpdf中包含css文件的任何其他方式

<div class="div_info" style="width:100%; float:left; padding:10px 0px;">
    <div style="padding:2px 0 0 0; margin:0px; float:left;"><p>Interior/Exterior BPO</p>'.$row->interior_exterior_form.'</div>
    <div style="padding:2px 0 0 0; margin:0px; float:left;"><p>Property Address:</p>'.$row->property_address.'</div>
    <div style="padding:3px 0 0 33px; margin:0px; float:left;"><p>Borrower(s):</p>'.$row->borrowers.'</div>
    <div style="padding:3px 0 0 35px; margin:0px; float:left;"><p>Loan/REO#:</p>'.$row->loan_number.'</div>
</div>

它只支持内联css吗?

在上面的布局中,如果我使用边框,那么就不会拾取边框,但是如果我使用该表格,则会在其周围添加边框。

1 个答案:

答案 0 :(得分:0)

$html = <<<EOF
<style>   
    div.test {
        color: #CC0000;       
        border-style: solid;
        border-width: 1px;
        border-color: #000;
        text-align: center;
    }
</style>

<div class="test">This is your div content.</div>

<br />

EOF;

// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');

$pdf->lastPage();

$pdf->Output('sample.pdf', 'I');

有关详细信息,您可以访问this link并查看示例#61。