CardContainer
The CardContainer class is used to group single or multiple Card elements. Each container can either be of type columns or rows, which determines the layout of the cards.
class CardContainer
Constructor
# Basic example
container = tab.create_container() # Default type of "columns" and variants of {"height": "full","width": "full"} will be used
# Custom parameters
container = tab.create_container(
type="columns",
height="full",
width="auto",
gap=8
)
# Rows example
container = tab.create_container(
type="rows",
height="full",
width="auto",
gap=8
)Parameter
Description
Methods
Method
Description
Examples





Last updated