MPDF不显示表格边框或与表格相关的任何内容,仅显示数据

时间:2019-09-24 10:31:09

标签: mpdf

我只需要最简单的解决方法或至少不起作用的理由

我已经知道引导程序不适用于MPDF,因此编写了最简单的常规html代码。但仍然没有显示表格。

 <?php
    require_once __DIR__ . '/vendor/autoload.php';

    $mpdf = new \Mpdf\Mpdf();

  //html variable

  $data= '<!DOCTYPE html>
  <html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial- 
    scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>

  </head>
  <body>

//A Simple table
   <table >
   <thead>

   <tr>


     <th scope="col">ID</th>

   </tr>
 </thead>
 <tbody align="center">
 <tr ><td> 2413134</td><tr/>
  </tbody>
  </table>
  </body>
  </html>';


//outputing from here
$mpdf->WriteHTML($data);



$mpdf->Output();
?>

1 个答案:

答案 0 :(得分:0)

尝试通过CSS添加边框:

td {
    border: 1px solid;
}