gpt4 book ai didi

javascript - HTML 表格内容 : how to show part of content in new line if the line is lengthy

转载 作者:太空宇宙 更新时间:2023-11-04 12:05:19 28 4
gpt4 key购买 nike

我有一个类似 HTML 的内容

<Table style="width=100px;">
<tr>
<td>
KEY1:Value1 Key2:Value2
</td>
<tr>
<Table>

现在如果我的 td 内容比 TD 宽度长,它应该显示为
键1:值1
键2:值2

注意:这应该仅适用于内容长度大于 TD 宽度的情况另外,这是 IE6 需要的

最佳答案

在td中设置table-layout:fixed和word-wrap:break-word。

table{
width:100px;
table-layout:fixed;
}

td{
word-wrap:break-word ;
}

工作 fiddle here

关于javascript - HTML 表格内容 : how to show part of content in new line if the line is lengthy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29430732/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com