-
Notifications
You must be signed in to change notification settings - Fork 0
Feature Multiple Cards
tempus2016 edited this page Jun 24, 2026
·
2 revisions
A tab normally wraps a single card. Use cards: (a list) instead and Tabdeck stacks them vertically for you — no need to hand-write a vertical-stack.
Per-tab key: cards (list of card configs)
type: custom:tabdeck-card
tabs:
- name: Overview
icon: mdi:view-dashboard
cards:
- type: markdown
content: "## Card one"
- type: entities
entities: [light.kitchen, light.hall]
- type: gauge
entity: sensor.power
- name: Other
icon: mdi:cog
card: # a single card still works
type: markdown
content: single
-
cards:is collapsed into avertical-stackcard internally, so it inherits everything (lazy-mount, keep-alive, etc.). - If both
cardandcardsare given,cardswins. - In the visual editor, a tab built this way shows the native vertical-stack card editor, where you can add/remove/re-order the sub-cards.
- Want columns instead of a stack? Use a single
card:oftype: gridorhorizontal-stack.
Concepts
Features