Skip to content

Instantly share code, notes, and snippets.

@splitbrain
Created January 11, 2012 12:09
Show Gist options
  • Save splitbrain/1594388 to your computer and use it in GitHub Desktop.
Save splitbrain/1594388 to your computer and use it in GitHub Desktop.
mpdf float behaviour
<?php
$html = '<html><head></head><body>
<p><img src="http://php.net/images/php.gif" style="float:left"> this is right to the image</p>
<p>Browsers will show this right to the image as well. mpdf does not</p>
</body></html>';
include("MPDF53/mpdf.php");
$mpdf=new mPDF();
$mpdf->WriteHTML($html);
$mpdf->Output();
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment