在表格单元格中使用没有默认nowrap的text-rotate属性

时间:2019-06-25 12:02:27

标签: php mpdf

使用旋转文本属性,似乎无法避免在表格单元格上使用默认的nowrap

我试图向左转90度,一个特定的表格标题

<table class="table mt-1" style="table-layout:fixed;width:100%;word-wrap:break-word;">
  <thead>
    <tr>
      <th></th>
      <th>ITEMS</th>
    </tr>
    <tr>
      <th>ATIVOS</th>
      <th text-rotate="90" style="white-space:normal;">Item 1</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Ativo 1</td>
      <td></td>
    </tr>
  </tbody>
</table>

实际上,它输出的表标题单元格没有包装,导致在2页上打印,我希望这种旋转但有包装。

错误:

enter image description here

右:

enter image description here

0 个答案:

没有答案