gpt4 book ai didi

php - mPDF - 基于元素高度的分页符

转载 作者:行者123 更新时间:2023-12-04 11:58:31 31 4
gpt4 key购买 nike

我正在使用 mpdf在 Laravel 和 this package 版本 4.0
问题是我有一个不同高度的问题列表,其中有 4 个选项,我不知道每个 div 标签的确切和大致高度,其中有哪些问题和答案选项,我不想要我的某些部分问题转到另一页
我的问题的所有部分都必须在 上一页如果这不可能发生,mpdf 将该问题标签元素放在下一页(问题的所有部分)
这张照片暂时是错误的:
sample question lists
我想要的是:
This image
所以对于这个问题,我想知道我的问题元素的高度,以便我可以确定是否需要新页面来添加分页符(与 StackOverflow 上的 this question 相同),或任何其他解决方案来解决我的问题
这是我的 Blade 文件:

@php
error_reporting(0);
@endphp

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>سوالات</title>

<style>
html, body {
background-color: #fff;
color: #636b6f;
font-family: 'fa', sans-serif;
direction: rtl;
}

.main-container{
padding:20mm;
}

@page {
footer: pagefooter;
margin-top: 0pt;
}

@page:first {
header: firstheader;
margin-bottom: 200pt;
}

.item-answer{
display: inline !important;
width: 100%;
}

.sub-item-answer{
float: left;
display: inline !important;
margin-top: 0 !important;
padding-top: 0 !important;
height: auto !important;
margin-bottom: auto !important;
}

.sub-item-answer-num{
width: 5%;
float:right;
}

.q_1{
margin-top: 45px !important;
}

.question{
display: inline-block;
page-break-inside: avoid !important;
position: relative;
float:right;
}

.question-row{
display: inline !important;
width: 100%;
}

.question-number{
padding: 5px;
background: #bebe27;
border-radius: 10px;
width:10% !important;
text-align: center;
color:#ffffff;
font-weight: bold;
}

.main-question{
width: 95% !important;
}

.row {
margin-left: -15mm;
margin-right: -15mm;
}
</style>
</head>
<body>
@php
$i = 0;

@endphp

<htmlpageheader name="pageheader" style="display:none"></htmlpageheader>

<htmlpageheader name="firstheader">
<img style="width: 100%;height:fit-content" src="http://api.amoozeshmelli.com/images/pdf/header.png" alt="header">
</htmlpageheader>

<sethtmlpageheader name="firstheader" value="on" show-this-page="1"/>

<sethtmlpageheader name="pageheader" value="on"/>

<div class="main-container container-fluid">

@foreach($data as $question)
@php
$i++;
$j=0;
@endphp

<div style="page-break-inside: avoid !important;" class="question q_{{$i}}">

<div class="row question-row">

<div class="question-number col-sm-1"> سوال{{$i}} </div>

<div class="main-question col-sm-11">
@if($question->title)

{!! $question->title !!}

@if($question->image_url)
<img class="img-responsive" src="{{$question->image_url}}" alt="test">
@endif
@else
@if($question->image_url)
<img class="img-responsive" src="{{$question->image_url}}" alt="test">
@endif
@endif
</div>

</div>

@if($question->options)
<div class="question-main-container" style="float: right">
@foreach($question->options as $option)
@php
$j++;
@endphp
<div class="item-answer center-block row">
<div class="sub-item-answer-num col-sm-1">{{$j}})</div>
@if($option->title)
<div class="sub-item-answer col-sm-11">
{!! $option->title !!}
@if($option->image_url)
<img style="width: auto; height:80px;" src="{{$option->image_url}}" alt="test" />
@endif
</div>
@else
@if($option->image_url)
<div class="sub-item-answer col-sm-11">
<img style="width: auto; height:80px;" src="{{$option->image_url}}" alt="test" />
</div>
@endif
@endif
</div>
@endforeach
</div>

@endif
<hr>
</div>
@endforeach


</div>



<htmlpagefooter name="pagefooter">
<p style="text-align: center;direction: rtl;">
صفحه {PAGENO}
</p>

<img src="http://api.amoozeshmelli.com/images/pdf/footer.png" alt="header" style="z-index: 0 !important;width: 100%;">
</htmlpagefooter>

</body>
</html>

我尝试了 documentation of mpdf 中的所有方法和 this answer但结果没有用
如果存在任何其他解决方案,请指导我

最佳答案

使用 page-break-inside: avoid;为您的区块(见 https://mpdf.github.io/css-stylesheets/supported-css.html)

关于php - mPDF - 基于元素高度的分页符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68139757/

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