P粉1333218392023-08-30 00:08:37
你應該為日期列使用white-space: nowrap;
。當你說你想要描述單元格更短時,我不確定你的意思是什麼?只需調整寬度以獲得所需的結果。
P粉3409802432023-08-30 00:04:43
只需在CSS中新增 white-space:nowrap,它將使所有內容都在一行上顯示。請參閱下方
table { border-collapse: collapse; width: 100px; } td { border: 1px solid gray; padding: 0.25rem 0.5rem; } td:last-child { white-space: nowrap; }
<table> <tr> <td>Description</td> <td>Date</td> </tr> <tr> <td>This is a really long description cell with many lines</td> <td>2022-10-12</td> </tr> </table>