0

私は次の部分でテーブル部分のqweb pdfに取り組んでいます:

<div class="row">
    <h3><font color="blue">Action Items:</font></h3>
    <table class="table table-bordered">
        <thead>
            <tr>
                <th>Action</th>
                <th>Assigned To</th>
                <!--<th class="text-center">Ref.</th>-->
                <th>Due Date</th>
                <th>Status</th>
            </tr>
            <br/>
            <br/>
        </thead>
        <tbody>
            <tr t-foreach="o.action" t-as="line">
                <td><span t-field="line.act_ion"/></td>
                <td>
                    <span t-field="line.asgnd_to"/>
                </td>
                <td>
                    <span t-field="line.due_date"/>
                </td>
                <td>
                    <span t-field="line.Status"/>
                </td>
            </tr>
        </tbody>
    </table>
</div>

そして、テーブルヘッダーとテーブルボディが新しいページで一緒に衝突しているような画像のような問題が発生しています画像テーブル

4

1 に答える 1

0

divタグの外側にテーブルを作成し、テーブルに次のクラスを設定します: class="table table-condensed"

于 2016-02-25T09:59:47.130 に答える