Bootstrap 4网格布局不能与dompdf一起使用

问题描述 投票:0回答:1

我正在使用dompdf来渲染一个PDF文档。我们在整个应用程序中使用了Bootstrap 4,所以我希望能够在生成文档的twig模板中使用它。

目前,我面临一个Bootstrap 4网格系统在生成的PDF中不能很好地渲染的问题:同一个.row div中的元素全部堆积起来。

我确定模板中加载了Bootstrap CSS。

我的代码

<div class="container-fluid">
    <div class="row">
        <div class="col-xs-1">
            little text
        </div>
        <div class="col-xs-11">
            <h1>Big title</h1>
        </div>
    </div>
</div>

生成的PDF文件。screenshot of a pdf with all the text piled up

更新。col-n 而不是 col-xs-n

我的代码。

<div class="container-fluid">
    <div class="row">
        <div class="col-1">
            little text
        </div>
        <div class="col-11">
            <h1>Big title</h1>
        </div>
    </div>
</div>

screenshot of a pdf with all the text piled up

html css pdf bootstrap-4 dompdf
1个回答
0
投票

试试这个类 .col-1.col-11.col-sm-1 .col-sm-11

avaible.col-xs它是为bootstrap 3设计的。

.col-   .col-sm-    .col-md-    .col-lg-    .col-xl-

col-xs 它是为bootstrap 3设计的

© www.soinside.com 2019 - 2024. All rights reserved.