破折号 |多个 H6() 在同一行

Dash | Multiple H6() on the same line

目标:在同一条线上有两个 H6()

我知道通过一个 Row() 和两个 Col() 来做到这一点。我正在努力实施它;(

尝试次数:

...
# H6('Line markers'),
# H6('Line colors'),
# H6('Line markers', 'Line colors')
Row(Col(Div([H6('Line markers')]))),
Row(Col(Div([H6('Line colors')]))),
#Row(Col(Div([H6('Line markers'), H6('Line colors')]))),
...

网页:

Line markers
Line colors

所需网页:

Line markers                    Line colors

运行时没有错误,但在美学上很烦人。

您可以使用弹性框来做到这一点。用 style=dict(display='flex').

将两者包装在 div 中
...
Row([Col(Div([H6('Line markers')])),
     Col(Div([H6('Line colors')]))]),
...