[]
The white-space property specifies how white-space inside an element is handled.
public enum C1StyleWhiteSpace
Public Enum C1StyleWhiteSpace
| Name | Description |
|---|---|
| NoWrap | Sequences of whitespace will collapse into a single whitespace. Text will never wrap to the next line. The text continues on the same line until a <br> tag is encountered |
| Normal | Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary. |
| Pre | Whitespace is preserved by the browser. Text will only wrap on line breaks. Acts like the <pre> tag in HTML. |
| PreLine | Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary, and on line breaks. |
| PreWrap | Whitespace is preserved by the browser. Text will wrap when necessary, and on line breaks. |