我有一個HTML表格,其中一列包含一長串文本。但是這段文字的某些部分需要有不同的字體顏色,所以我把這段文字分成一系列的span元素,所以我可以相應地格式化每一個。問題是我可以將文本包裝在這個單元格內,它擴大了TD尺寸以適應元素。如何設置跨度元素之間的換行符
我不需要每個範圍內的文本都會斷開,但是當元素到達TD元素的末尾時,我希望下一個範圍排列在下一行。
有沒有人知道我該怎麼做?
甲例子來說明:
來源:
<table>
<tr>
<td>
<span>Sample Text A</span>
<span>Sample Text B</span>
<span>Sample Text C</span>
<span>Sample Text D</span>
<span>Sample Text E</span>
<span>Sample Text F</span>
</td>
</tr>
</table>
這是所需的輸出:
This is the limit of the TD element =============>|
Sample Text A Sample Text B Sample Text C
Sample Text D Sample Text E Sample Text F
這是結果我得到:
This is the limit of the TD element =============>|
Sample Text A Sample Text B Sample Text C Sample Text D Sample Text E Sample Text F