- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 mpdf在 Laravel 和 this package 版本 4.0
问题是我有一个不同高度的问题列表,其中有 4 个选项,我不知道每个 div 标签的确切和大致高度,其中有哪些问题和答案选项,我不想要我的某些部分问题转到另一页
我的问题的所有部分都必须在 上一页如果这不可能发生,mpdf 将该问题标签元素放在下一页(问题的所有部分)
这张照片暂时是错误的:
我想要的是:
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>
最佳答案
使用 page-break-inside: avoid;
为您的区块(见 https://mpdf.github.io/css-stylesheets/supported-css.html)
关于php - mPDF - 基于元素高度的分页符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68139757/
Mpdf 中的以下两个函数在所有页面中添加页眉和页脚。 设置HTMLHeader()SetHTMLFooter() 但是,有人可以帮我从 pdf 的第一页删除页眉和页脚吗? 最佳答案 mPDF 有一个
我有这个问题/想拥有这个功能 我有一个类似于 #375 的问题而是,我的表的功能主要与文档中预期的一样。唯一不能理解的是,我的表头会从一页开始,然后对于一个长表,或者如果它只是延伸到页尾,表数据将移动
我使用的是带有 yii2 的 mpdf 8.1,用于 pdf 报告下载的 php 版本是 5.6.40。它在本地环境中运行良好。但是在具有相同 php 版本的实时服务器中找不到类 mpdf。 mpdf
我正在尝试通过按 eventView.php 中的打印按钮将 html View eventView.php 导出并下载到 pdf,使用 mPDF。即使加载速度很慢,我现在也可以转换为 pdf,但现在
不幸的是,我无法自己简单地测试它。我在这里查看了文档: https://mpdf.github.io/css-stylesheets/supported-css.html 它没有列出任何关于伪类的信息
我目前使用的是 mpdf 6.1,我想切换到 7。但是我找不到没有 Composer 的方法来安装它。是否有完整的软件包可以在我的本地主机上下载、解压缩和测试? 最佳答案 好吧,我花了几天的时间寻找方
4 月份在工作服务器上开始时,我们受到了这个问题的困扰。在客户报告 PDF 不再显示图像之前,我们的应用程序一切正常。 我们的 PDF 是首先通过 HTML 渲染生成的。当显示 HTML 渲染时,图像
使用 PHP 5.6 在 WAMP 堆栈上开发,然后转移到 LAMP 7.1.5一切正常,除了 mPDF 6.1.0 提供以下内容: Warning: A non-numeric value enco
对于我通过 Composer 安装了 mpdf 6 的项目 composer require mpdf/mpdf 它工作得很好,但库本身是我整个项目的十倍。有没有我可以删除的文件?例如,我什么时候需要
$style='@page *{ margin-top: 0cm; margin-bottom: 0cm; margin-left: 0cm; margin-right: 0cm; }'; $html
我想将 mPDF 包含到我的 WordPress 插件中以启用某些导出为 PDF 的功能。然而,mPDF 文件非常大,约为 98mb。 是否只有我可以包含的特定文件才能保留导出为 HTML 并保持格式
它不会在 pdf 中显示 ite1 值。为什么?您能纠正我的错误吗? WriteHTML('Hello World'); $html1 = ' Module De
我想将 mPDF 包含到我的 WordPress 插件中以启用某些导出为 PDF 的功能。然而,mPDF 文件非常大,约为 98mb。 是否只有我可以包含的特定文件才能保留导出为 HTML 并保持格式
我正在使用 mPDF 7.x 版并尝试遵循此文档: https://mpdf.github.io/fonts-languages/fonts-in-mpdf-7-x.html 我只是无法让它工作。没有
您好,我正在使用 mpdf 生成 pdf。现在我面临 html 中表格边框的问题。我在 html 中有以下表格样式 Test header Test he
@page :last { background: rgb(167,0,51); } 我需要为 PDF 的最后一页添加背景,但它不起作用。只有第一页得到 bg 但不是最后一页。有什么解决办法吗? 引
我正在使用 mpdf在 Laravel 和 this package 版本 4.0 问题是我有一个不同高度的问题列表,其中有 4 个选项,我不知道每个 div 标签的确切和大致高度,其中有哪些问题和答
我需要使用 mPDF 生成发票,它们都有页眉、页脚和必须覆盖整个页面的相同背景图像。 我在网上看到了其他解决方案,但没有一个对我有用。 这是几次尝试,都导致失败(图像不显示、50* 错误或使用图像时图
我正在使用 mpdf 库,但是我认为在下载文件时更改下载文件的名称会相当简单,文档说明如下: WriteHTML('Hallo World'); $mpdf->Output('filename.pdf
注:mpdf 6.0 你好, 我正在尝试使用 mpdf 生成 pdf,它需要元素的精确定位以便以后打印。元素将从给定页面的最左上角开始绘制,即不应有隐式填充、边距或其他可能影响元素在正文中位置的内容。
我是一名优秀的程序员,十分优秀!