DOMPDF içinde yüzen için geçici çözüm

2 Cevap php

DOMPDF does not support floats.

Ancak ben birçok tablo listeleme, ve ağırlıklı olarak anahtar & değer çiftleri. Ben yan yana görünmesi için bu tabloların 2 istiyorum.

yani ben could katları kullanmak durumunda

HTML

<table id="stuff">
...
</table>

<table id="other-stuff">
...
</table>

CSS

table#stuff {
    float: left;
}

table#other-stuff {
    float: right;
}

Geçici çözümün ne tür bunu desteklemek için ne yapabilirim? Yoksa imkansız mı?

Update

Herkes herhangi bir fikir varsa, test etmek için bir yer var here.

2 Cevap

Bu may olacak gibi görünüyor supported in the beta.

You can download o Google Code page den.

Make a table with 2 cells (50% if needed). Align 1st to left and the 2nd to right. In each cell you place your tables.

Bu 2 yüzer gibi görünmelidir.