如何在 Python Dash 中的两个 dcc 组件之间给出 space?
How to give space between two dcc components in Python Dash?
Dash 中   (space) 的 HTML 等价物是什么?
html.Div(
[
dcc.Input(),
<add horizontal space here>
dcc.Input()
]
)
如果你想在组件之间添加一些 space 你可以简单地使用 CSS-properties 为此:
html.Div(
[
dcc.Input(),
dcc.Input(style={"margin-left": "15px"})
]
)
这会在您的第二个输入的左侧添加边距。
查看 Plotly Dash 文档中的布局部分和 CSS 关于边距的文档:
Dash 中   (space) 的 HTML 等价物是什么?
html.Div(
[
dcc.Input(),
<add horizontal space here>
dcc.Input()
]
)
如果你想在组件之间添加一些 space 你可以简单地使用 CSS-properties 为此:
html.Div(
[
dcc.Input(),
dcc.Input(style={"margin-left": "15px"})
]
)
这会在您的第二个输入的左侧添加边距。
查看 Plotly Dash 文档中的布局部分和 CSS 关于边距的文档: