使用旋转文本属性,似乎无法避免在表格单元格上使用默认的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页上打印,我希望这种旋转但有包装。
错误:
右: