Sorry for the newbie nature of this question. As I am working through the example: https://github.com/plotly/dash-salesforce-crm. I am not sure what the className inside the html.Div does. Can someone point me to some documentation or tutorial so I can learn more? Also, are there a list of commonly used className available.
The app I am trying to build is very similar to the salesforce-crm example.
It is the equivalent of âclassâ inside an HTML div, but in Python class is a reserved keyword so it is replaced with className. If you have custom styling that applies to certain classes, the className argument is the way to apply this. For example, if you are using Bootstrap styling then creating a button with className=âbtn-primaryâ vs className=âbtn-dangerâ will result in different looks.