> import dash
> import dash_bootstrap_components as dbc
> import dash_html_components as html
>
> external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
>
> app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
> app.layout = html.Div(
> [
> dbc.Row(dbc.Col(html.Div("A single, half-width column"), width=6)),
> dbc.Row(
> dbc.Col(html.Div("An automatically sized column"), width="auto")
> ),
> dbc.Row(
> [
> dbc.Col(html.Div("One of three columns"), width=3),
> dbc.Col(html.Div("One of three columns"),width=6),
> dbc.Col(html.Div("One of three columns"), width=3),
> ]
> ),
> ]
> )
>
> Blockquote
> if __name__=='__main__':
> app.run_server()
I copied the code from the dash bootstrap documentation , yet my results are different. Can someone look into it?
expecting something similar to this