解決表格單元格換行問題
在HTML 中,表格單元格(
解決方案:
要確保表格單元格內容換行,請新增以下樣式:
程式碼範例:
<code class="css">table { border-collapse: collapse; table-layout: fixed; width: <table_width>; } table td { border: 1px solid #ccc; width: <td_width>; word-wrap: break-word; }</code>
範例HTML:
<code class="html"><table> <tr> <td>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</td> <td>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</td> </tr> </table></code>
範例HTML:
範例HTML ,表格單元格將包裹其內容並避免拉伸。此外,設定表格和儲存格寬度可確保內容適合定義的尺寸。以上是如何讓表格單元格換行 HTML 內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!