gpt4 book ai didi

python - 如何在Python Dash中的两个dcc组件之间留出空间?

转载 作者:行者123 更新时间:2023-12-03 13:31:36 30 4
gpt4 key购买 nike

Dash中&nbsp(空格)的HTML等效项是什么?

html.Div(
[
dcc.Input(),
<add horizontal space here>
dcc.Input()
]
)

最佳答案

如果要在组件之间添加一些空间,则可以为此简单地使用CSS属性:

html.Div(
[
dcc.Input(),
dcc.Input(style={"margin-left": "15px"})
]
)

这会在第二个输入的左侧增加一个边距。

看看Plotly Dash文档和CSS文档中关于边距的layout-section:
  • https://dash.plotly.com/layout
  • https://www.w3schools.com/csSref/pr_margin-left.asp
  • 关于python - 如何在Python Dash中的两个dcc组件之间留出空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61234309/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com