I have the following element,
html.Div(id='button', children=[
html.A(html.Button(children='Button', id='download_button'),
id='download_link', download="data.csv", href="", target="_blank")
],
)
placed right after a dash_table.DataTable
, and as seen in the quick gif I made, there is a variable amount of weird whitespace between the table and the button, https://imgur.com/a/tDaSYxG .
Are there any style
commands that could alleviate this situation?