【发布时间】:2017-02-25 01:57:20
【问题描述】:
我正在尝试设置表格的最大宽度,但它似乎不起作用。如果表格内的单词太长,它会自动扩大表格的宽度。我该如何阻止这种情况发生,而是让太长的单词转到下一行?
<style>
table {
max-width: 300px;
}
table,td {
border: 1px solid red;
}
div {
border: 1px solid blue;
word-wrap: break-word;
}
</style>
<table>
<tr>
<td>
<div> hellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohello </div>
</td>
</tr>
</table>
【问题讨论】:
-
也将
max-width添加到td。 jsfiddle.net/2kcc59o6
标签: html css width html-table max