Skip to content

Feature Multiple Cards

tempus2016 edited this page Jun 24, 2026 · 2 revisions

Multiple cards per tab

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

Multiple cards in one tab

Notes

  • cards: is collapsed into a vertical-stack card internally, so it inherits everything (lazy-mount, keep-alive, etc.).
  • If both card and cards are given, cards wins.
  • 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: of type: grid or horizontal-stack.

Clone this wiki locally