1

Text is going beyond the div. How can I enforce the paragraph that won't overflow outside the div ?

.preview {
    background: red;
    width: 200px;
}
<div class="preview">
    <p>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</p>
</div>
Bhojendra Rauniyar
  • 83,432
  • 35
  • 168
  • 231

1 Answers1

3

Use word-wrap:

.preview {
    background: red;
    width: 200px;
    word-wrap: break-word;
}
<div class="preview">
    <p>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</p>
</div>
Bhojendra Rauniyar
  • 83,432
  • 35
  • 168
  • 231