gpt4 book ai didi

html - Bootstrap 4 网格布局不适用于 dompdf

转载 作者:行者123 更新时间:2023-12-03 20:53:59 24 4
gpt4 key购买 nike

我正在使用 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

最佳答案

试试这门课 .col-1.col-11 , 或 .col-sm-1 .col-sm-11
可用:

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

col-xs 用于 bootstrap 3

关于html - Bootstrap 4 网格布局不适用于 dompdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61616199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com