Elements
None Element
An invisible container for grouping child elements without visual output.
None Element
The None element is an invisible layout container. It produces no visual output of its own but can hold any number of child elements, apply a shared condition to the group, and control how children are laid out using its Mode property. Use it to group related elements that should move, hide, or size together.
![]()
Use cases
- Grouping — combine multiple elements so they share the same parent positioning
- Conditional sections — wrap a group in a
Conditionto show only when data matches (e.g. hide a spell block unless{{Type}}=Spell) - Layout containers — use
Modeto control how children are arranged
Properties
None elements inherit the common properties described in the Elements Overview. The most relevant are:
| Property | Description |
|---|---|
Margin | Spacing around this container group |
Mode | Sizing and layout mode for this group |
Condition | Expression — show the group only when truthy |
NotCondition | Inverse of Condition |