我在html中遇到表格问题, 实际上我修复了宽度,并希望根据其中的内容增加td 高度, 例如:如果td 宽度 30px ,当td内的数据超过td宽度时,我想在下一行中显示剩余数据,依此类推..
表:
<table width="100%" border="1" >
<tr>
<td align="left" width="30px">
laaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa text
</td>
<td align="left" width="30px">
text
</td>
</tr>
</table>
答案 0 :(得分:2)
这是您问题的解决方案!在这种情况下,列的宽度相等,但可以更改,更不用说了。
<table border="1" width="100%" style="table-layout:fixed">
<tr>
<td style="word-wrap:break-word">Hellohellohellohellohellohellohellohellohellohellohello
<td>text</td>
</tr>
</table>
这是演示http://jsbin.com/ihaxob/2/edit .. 我已经看到了这个线程的解决方案!