防止图片和文字将表格撑大

可以做到既防止表格/层撑破又防止单词断裂了。
如下:
代码

table {
table-layout: fixed;
word-wrap:break-word;
}
div {
word-wrap:break-word;
}

下面的是将超出范围的字省略?



<table width="200" border="1" style="table-layout: fixed;">
<tr>
<td style="overflow: hidden; white-space: nowrap; text-overflow: ellipsis;">⊙河南省重点建设成就图片展⊙中原文化港澳行,魅力河南图片展⊙中原文化上海行,魅力河南图片展⊙中原文化北京行,魅力河南图片展⊙中原文化广州行,魅力河南图片展⊙中华人民共和国建国50周年成就展
</td>
</tr>
</table>

猜你喜欢

转载自huguifuture.iteye.com/blog/986966