1/* If you don't know why your line is breaking or you just want to make sure
2this doesn't happen, add the CSS bellow: */
3white-space: nowrap;
4
5/* Example: */
6/* HTML: */
7<p>This is a paragraph<p>
8/* CSS: */
9p { white-space: nowrap; }
1/* Schlüsselwortwerte */
2word-break: normal;
3word-break: break-all;
4word-break: keep-all;
5
6/* Globale Werte */
7word-break: inherit;
8word-break: initial;
9word-break: unset;
10