DOMPDF does not support floats .
However, I list a lot of tables, and they are mostly keys and value pairs. I would like for two of these tables to appear side by side.
i.e. if i could use float
HTML
<table id="stuff"> ... </table> <table id="other-stuff"> ... </table>
CSS
table#stuff { float: left; } table#other-stuff { float: right; }
What workaround can be made to support this? Or is it impossible?
If anyone has any ideas, there is a place for testing here .
source share