How to force all component in one row?

Hi hoatran, I found an answer from this forum, the problem is due to dcc.Input() issue. Here is what I did by adding style={‘width’:‘100%’}, size=‘10’ inside dcc.Input() and it works. Thank you so much for your help. I appreicate it. Have a good day!

dbc.Col(dcc.Input(id=“dts-min-well-depth-text”, type=“number”, value=0,placeholder=0,style={‘width’:‘100%’}, size=‘10’),
width=3)

image

1 Like