css for line break code example
Example 1: css how to make text not break
/* If you don't know why your line is breaking or you just want to make sure
this doesn't happen, add the CSS bellow: */
white-space: nowrap;
/* Example:
HTML: */
<p>This is a paragraph<p>
/* CSS: */
p { white-space: nowrap; }
Example 2: enter in css
white-space: pre-line
Example 3: textblock line break
Text="Line1 Line2"
//or
<TextBlock>
line1
<LineBreak />
line2
</TextBlock>