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)