Control the component position

margin
As you see in the picture the right Dropdown component is not aligned to the left one.
I want to locate it in the same line as the left Dropdown (to its right). I tried using ‘margin-bottom’ field in the style, but it has no effect.

Any suggestions?

You can find some previous answers on how to throw components around in these two links:

I suppose in your case you could do something like:

html.Div(
   html.Div([
      dcc.Dropdown(id='the-first-one'),
      dcc.Checkboxes('blah'),
      dcc.Checkboxes('blah'),
      dcc.Checkboxes('blah'),
   ]),
   html.Div(
      dcc.Dropdown(id='the-second-one'),
      style={'display': 'inline-block'}
   )
)