Ich habe eine div
, die etwas Inhalt hat, und aufl10 eingestellt Wenn dies passiert bleibt die div
bleibt die gleiche Größe. Wie kann ich es so machen, dass die div
weiterhin bis zum Ende des Inhalts, der jetzt rechts von der Seite schwebt, umbrechen wird?Expand Container Div mit Inhalt auf Nowrap gesetzt
.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>