Problem with dbc.col/dbc.row

Hi, I’m very new to Dash and Plotly and I encounter a problem using the dbc.Col/dbc.row tool.

I want to put two dropdowns side by side but my code stacked them one on the other and I don’t know why…

Here’s the code and result

If anyone have an idea of what I could’ve done wrong…

Hi @robertdinero and welcome to the Dash community :slightly_smiling_face:

Try adding the Bootstrap stylesheet:

app = JupyterDash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP])

Hi @AnnMarieW, thanks for your answer it worked !! :blush:

1 Like