I have three HTML DIVs that I want to display next to each other so I use classname="four columns" on each of them. When I upgrade Dash from 0.43.0 to 1.0.0 or later (I tried 1.6.0 as well) all three DIVs take up the whole width and are thus displayed beneath each other.
I couldn’t find any info on a 1.0.0 breaking change regarding this, but did the syntax change anyway? Or was my code wrong before and did it accidentally work in 0.43.0? You can see my code here.
I used to have the following line which included some custom CSS (which included styling of the four columns classes): dash_app.css.append_css({"external_url": "/static/dash.css"})
Apparently this doesn’t work anymore after Dash 1.0.0. Changing it to the code from your solution indeed fixed it :)! Thx!