DEV Community

Tero Auralinna
Tero Auralinna

Posted on • Originally published at auralinna.blog on

Wrapping newlines via CSS

This is a simple tip how to wrap newlines without converting newlines to <br> tags. This is quite handy if you have a text without formatting and the only need is to wrap text paragraphs. You don't have to think about HTML sanitization or conversion.

.wrapped-text {
    white-space: pre-line;
}
Enter fullscreen mode Exit fullscreen mode

Just trim newlines from the beginning and end of the text before rendering. Value pre-line doesn't render whitespaces in the middle of the text.


This blog post was originally published on Auralinna.blog

Top comments (0)