我正在尝试使用 DomPDF ,我想要打印一些数据。但是问题是内联 CSS 没有处理它。意味着它无法渲染内联 CSS 虽然它在 HTML 视图中完美运行但如何才能使其正常工作。有什么可能的建议吗?
这是我的转换 PDF
的刀片页面<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<div class="main">
<h3 style="text-align:center"><u>X-Ray Invoice</u></h3>
<p><strong>Box Number:</strong> {{$customer->box_number}}</p><br>
<p style="float:right; margin-top: -38px;margin-right: 230px;"><strong>Custromer ID:</strong> {{$customer->uniqueId}}</p><br>
</div>
</body>
</html>
这是控制器代码:
$pdf = PDF::loadView('pdf.test', compact('customer'));
return $pdf->download('inovice.pdf');
这是输出