テーブルの最大幅を設定しようとしていますが、動作していないようです。テーブル内の単語が長すぎると、テーブルの幅が自動的に拡大されます。どのように私は起こってからそれを停止し、代わりに次の行に行くにはあまりにも長い言葉を持っているのですか?テーブルの最大幅を設定する
<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>
「最大幅」を「td」にも追加します。 https://jsfiddle.net/2kcc59o6/ – Swordys