3

I tried:

html.Span(children=[html.Div('Note:'),
                    html.Br(style={'margin-bottom':"2px"})
...

I tried also line-height, margin and 2, "2em".

Any suggestions?

Daniel Widdis
  • 8,424
  • 13
  • 41
  • 63
Ormetrom2354
  • 315
  • 3
  • 11

1 Answers1

1

It has probably been solved since, but for me the line-height parameter did the trick (though it might depend on the browser):

html.Span(children=[
                html.Div('Note:'),
                html.Br(style={"line-height": "5"})
                ])

Also answered more comprehensively here

Mat.B
  • 336
  • 2
  • 8