2012-10-03 61 views
0

我使用tcpdf在我的一個項目中生成PDF文件,並且沒有拾取div的邊框。但是當我在同一個佈局中使用表格時,它正在拾取邊界。tcpdf沒有拿起div的邊框

可以請你建議我必須做的css在tcpdf?

或其他任何方式,包括在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?

在上面的佈局中,如果我使用邊框,那麼它不會拾取它,但是如果我使用表格,那麼它會在其周圍添加邊框。

回答

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。