我正在寻找一种使用 CSS 调整表格内容大小的方法,以确保在打印时显示所有内容,但仍保持文本不会为任何单个单元格换行。在这个例子中,
<table class="datatables" id="table1">
<tr>
<td style="white-space:nowrap;">This is a table with a bunch of data that stretches off the page when printed.</td>
<td style="white-space:nowrap;">I want it to print on one line, not wrap but also be sized small enough to fit on a printed page.</td>
<td style="white-space:nowrap;">It currently cuts off most of this last column.</td>
</tr>
</table>
最后一个 td 在打印时大部分被切断,但所有这些都按照我的意图显示在一行上。例如,我将样式内联,但将使用样式表。我理想的解决方案是自动调整字体大小以适应每行一行而不换行。任何想法将不胜感激。