vstack to build a grid.
Usage
Signature
Parameters
Sequence[object]
required
A list of items.
Literal['start', 'center', 'end', 'space-between', 'space-around']
default:"'space-between'"
Justify items horizontally: start, center, end, space-between, or space-around.
Optional[Literal['start', 'end', 'center', 'stretch']]
default:"None"
Align items vertically: start, end, center, or stretch.
bool
default:"False"
Wrap items or not.
float
default:"0.5"
Gap between items as a float in rem. 1rem is 16px by default.
Optional[Literal['equal'] | Sequence[float]]
default:"None"
"equal" to give items equal width; or a list of relative widths with same length as items, e.g., [1, 2] means the second item is twice as wide as the first; or None for a sensible default.Returns
An Html object.