Dompdf风格并不起作用

时间:2018-05-22 12:24:22

标签: php css dompdf

我尝试使用dompdf,即使我的脚本生成了pdf文档,样式标记也不起作用,这是我的代码。我理解它是如何工作的,并且已经成功地只使用了html,但它是我第一次使用css并且它不起作用。

    require_once 'dompdf/autoload.inc.php';
?>
<?php

$nom=$_GET['nom'];
$prenom=$_GET['prenom'];
$email=$_GET['email'];
$numeroCommande=$_GET['numerocommande'];
$commandeTotal=$_GET['commandeTotal'];?>
<?php ob_start();?>
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>

    <title>Title</title>
</head>
<body>
<div class='invoice-box'>
        <table cellpadding='0' cellspacing='0'>
            <tr class='top'>
                <td colspan='2'>
                    <table>
                        <tr>
                            <td class='title'>
                                <img src='https://www.hollandbikes.com/img/holland-bikes-logo-1493142780.jpg' style='width:100%; max-width:300px;'>
                            </td>

                            <td>
                                Facture N°: <?php echo $numeroCommande ?> <br>
                                Date: January 1, 2015<br>

                            </td>
                        </tr>
                    </table>
                </td>
            </tr>

            <tr class='information'>
                <td colspan='2'>
                    <table>
                        <tr>
                            <td>
                                Holland Bikes<br>
                                24 rue Firmin Gillot<br>
                                75015 Paris
                            </td>

                            <td>
                                <br>
                                <?php echo $prenom.' '.$nom ?><br>
                                <?php echo $email ?>
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>

            <tr class='heading'>
                <td>
                    Méthode de paiement
                </td>

                <td>
                    Carte Bleue
                </td>
            </tr>


            <tr class='total'>
                <td></td>

                <td>
                   Total: <?php echo $commandeTotal ?>€
                </td>
            </tr>
        </table>
    </div>
</body>
</html>
<?php
$html = ob_get_clean();?>

<?php 

require_once 'dompdf/autoload.inc.php';
?>
<?php

// reference the Dompdf namespace

use Dompdf\Dompdf;

// instantiate and use the dompdf class
$dompdf = new Dompdf();
$dompdf->loadHtml($html);

 // (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'landscape');

// Render the HTML as PDF
$dompdf->render();

// Output the generated PDF to Browser
$dompdf->stream(); ?>

你知道为什么这个标签不起作用吗?它应该接受基本的CSS,这就是为什么我不明白问题所在。

1 个答案:

答案 0 :(得分:0)

显然,不支持行高,我删除它并且它工作得很好。