#White-space
Defines how the element's white space is handled.-
white-space: normal;
defaultSequences of spaces are combined into one.Line breaks are ignored.The text content is wrapped.
-
white-space: no-wrap;
Sequences of spaces are combined into one.Line breaks are ignored. The text content is not wrapped and remains on a single line.
-
white-space: pre;
The white space is exactly preserved. ・Sequences of spaces are preserved ・Lines break only on new lines and
-
white-space: pre-wrap;
The white space is mostly preserved. ・Sequences of spaces are preserved ・Lines break on new lines, but also when reaching the end of the element
-
white-space: pre-line;
Only new lines are preserved. ・Sequences of spaces are combined into one ・Lines break on new lines, but also when reaching the end of the element