I like to put all the below 4 components in one row, so I used dbc.Row() with nested dbc.Col() with width defined. The final result look very ugly. I remember the total width must be 12, is it correct? why it does’t work for this code? Could you please give me some idea? Thanks
Thanks hoatran. I just changed width of each component to be 3, so total is 12. However, yes all the component can be on one row, but too big, the last component is too wide, so overflow the edge. not sure why this dcc.Input() component doesn’t use the width of input 3. Thanks
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!