Skip to content

Whitespace

Control whitespace handling

Syntax

visual="whitespace:[value]"

Values

ValueCSS OutputDescription
normalwhite-space: normalNormal whitespace
nowrapwhite-space: nowrapNo wrap
prewhite-space: prePreserve whitespace
pre-linewhite-space: pre-linePre-line
pre-wrapwhite-space: pre-wrapPre-wrap
break-spaceswhite-space: break-spacesBreak spaces

Examples

html
<pre visual="whitespace:pre">Preserved whitespace</pre>

Preview

Whitespace

visual="whitespace:pre" - Control whitespace handling

Normal spaces collapse
This text won't wrap to next line
Preserved spaces here
View Code
html
<div layout="flex:col" space="g:small p:medium" visual="bg:neutral-100 dark:bg:neutral-900 rounded:medium">
  <div space="p:small" visual="bg:primary text:white rounded:small whitespace:normal">Normal   spaces   collapse</div>
  <div space="p:small" visual="bg:success text:white rounded:small whitespace:nowrap">This text won't wrap to next line</div>
  <div space="p:small" visual="bg:warning text:black rounded:small whitespace:pre">Preserved   spaces   here</div>
</div>