How do I center a text in html.H1 in ploty dash in python?
app = dash.Dash(__name__)
app.layout = html.Div([
html.H1('Hello Dash', style={'color': 'red', 'fontSize': 40})
])
I want to put 'Hello Dash' right in the middle of the page. How can I do that?