その中にdiv
いくつかのコンテンツがあり、white-space: nowrap;
これが発生したときdiv
に同じサイズのままに設定されています。div
ページの右側に浮かんでいるコンテンツの最後まで、意志がラップし続けるようにするにはどうすればよいですか?
.parent {
border: 1px dotted blue;
}
.parent p {
border: 1px dotted red;
white-space: nowrap;
}
<div class='parent'>
<p>This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.</p>
<p>This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.</p>
</div>