📜  如何更改 dbc.col 的填充 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:17.868000             🧑  作者: Mango

代码示例1
If you're alright with imprecise solutions, setting form=True on the 
dbc.Row object will tighten the gutters up.

# For more fine-grained control, set no_gutters=True as was recommended in 
# the other answer, and on the dbc.Col objects add 
style={'margin-right': '5px', 'margin-left': '5px'}. 
# You can adjust those as appropriate. For end columns, you may want to 
# remove the margin on the end.