dcc.Dropdown align to centre

How does one align a dcc.Dropdown to the centre of a page?

see Center alignment for html.Div/dcc.Slider for a couple of examples

Thank you flyingcujo , I see the important point is style = {‘width’: ‘100%’, ‘display’: ‘flex’, ‘align-items’: ‘center’, ‘justify-content’: ‘center’}

1 Like