Hello,
I am trying to add an additional tag to my html.Div so that it will render as
<div class="" uk-grid></div>
.
Can it be done and how?
Hello,
I am trying to add an additional tag to my html.Div so that it will render as
<div class="" uk-grid></div>
.
Can it be done and how?
Hi @Bayees and welcome to the community!
I believe that tag is a className
associated with a stylesheet. If you have added the reference to the stylesheet in your Dash App definition you can use the classes from that stylesheet inside your div.
app = Dash(__name__, external_stylesheets=["/path_to_stylesheet.css"])
app.layout = html.Div(className="uk-grid")