- Blocks Layout
- Row
New to Gradio? Start here: Getting Started
See the Release History
Row
gradio.Row(···)Description
Row is a layout element within Blocks that renders all children horizontally.
Example Usage
with gr.Blocks() as demo:
with gr.Row():
gr.Image("lion.jpg", scale=2)
gr.Image("tiger.jpg", scale=1)
demo.launch()Initialization
Parameters
variant: Literal['default', 'panel', 'compact']
variant: Literal['default', 'panel', 'compact']default
= "default"row type, 'default' (no background), 'panel' (gray background color and rounded corners), or 'compact' (rounded corners and no internal gap).
elem_id: str | None
elem_id: str | Nonedefault
= NoneAn optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.
elem_classes: list[str] | str | None
elem_classes: list[str] | str | Nonedefault
= NoneAn optional string or list of strings that are assigned as the class of this component in the HTML DOM. Can be used for targeting CSS styles.