mirror of
https://github.com/jbranchaud/til
synced 2026-01-04 23:58:01 +00:00
Add Make A Block Of Text Respect New Lines as a css til
This commit is contained in:
23
css/make-a-block-of-text-respect-new-lines.md
Normal file
23
css/make-a-block-of-text-respect-new-lines.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Make A Block Of Text Respect New Lines
|
||||
|
||||
Generally when we fill a `div` tag full of text, it will display it one long
|
||||
strand irrespective of any line breaks that are included. This is a great
|
||||
default, but not necessarily what we want when we are displaying text from
|
||||
another source, such as our users.
|
||||
|
||||
We can convince a block of text to respect new lines by adding a couple CSS
|
||||
properties.
|
||||
|
||||
```css
|
||||
.multiline-text {
|
||||
word-wrap: break-word;
|
||||
white-space: pre-line;
|
||||
}
|
||||
```
|
||||
|
||||
The first rule, `word-wrap: break-word`, ensures that long lines of text
|
||||
uninterrupted by new lines respect the boundaries of our wrapping element.
|
||||
The second rule, `white-space: pre-line`, handles squashing of extra white
|
||||
space and respecting of new lines.
|
||||
|
||||
See a [working example here](https://codepen.io/anon/pen/bQpKyv).
|
||||
Reference in New Issue
Block a user