valentince kristiana
valentince kristiana

Reputation: 289

How to make a paragraph reside within a div

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>

Upvotes: 1

Views: 63

Answers (1)

Bhojendra Rauniyar
Bhojendra Rauniyar

Reputation: 85545

Use word-wrap:

.preview {
    background: red;
    width: 200px;
    word-wrap: break-word;
}
<div class="preview">
    <p>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</p>
</div>

Upvotes: 3

Related Questions