| Line Breaks within Your Text
- For multi-line Page Fields there is in option called Keep Line Breaks. If this option is on, the line breaks you place in your text when you hit the Enter key will be preserved when your text is displayed.
- To break text up into multiple lines insert the following sequence into your text: <br>. Think of <br> as line break.
- Another way to create multiple lines is to use the <pre> tag. Think of <pre> as preformatted. With the <pre> tag in effect line feeds in text area fields are preserved when your page is presented. You must close the <pre> tag with a </pre> tag.
Example:
<pre>
Line 1
Line 2
</pre>
- You can separate paragraphs with the <p> tag:
Example:
Paragraph 1
<p>
Paragraph 2
(A closing </p> tag can be used to close paragraphs, but browsers historically don't require it.)
|