I'm using TCPDF 5.9.141 to convert some HTML text to PDF. I'm finding that even in a very basic example, TCPDF is stripping style='margin-left' from [p] tags. Blockquote works ok, but replacing variable margins with blockquote would be a project I'd like to avoid doing.

A basic example:

        <p>testing
        <p style='margin-left:20px;'>margin-left:20px;
        <p style='padding-left:20px;'>padding-left:20px;
        <p><blockquote>blockquote</blockquote>
        <p>end test

The resulting PDF appears like:

testing

margin-left:20px;

padding-left:20px;

     blockquote

end test

Is TCPDF capable of handline margins in [p] tags?

(I would consider DOMPDF or other solutions, but DOMPDF does not handle tables very well and TCPDF has header capabilities)

link|improve this question

54% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.