[]
        
(Showing Draft Content)

C1.Blazor.Core.C1StyleWhiteSpace

C1StyleWhiteSpace Enum

The white-space property specifies how white-space inside an element is handled.

Namespace: C1.Blazor.Core
Assembly: C1.Blazor.Core.dll
Syntax
public enum C1StyleWhiteSpace
Public Enum C1StyleWhiteSpace

Fields

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.