This is probably a simple question but I can’t seem to find any docs to explain this for Dash.
If I’m building a layout (I’m currently using Dash Bootstrap’s Row and Column functions for this, but I assume the question is general), how do I add overlaid elements? In other words, how to add elements that don’t cause naerby elements to re-arrange themselves?
As an example, say I have a row of 6 buttons… is there any way I can insert a 270 deg rotated text saying “Buttons” to the left hand side of these buttons? At present, if I add, e.g.
html.Div(‘Buttons’, style={‘transform’: ‘rotate(270deg)’, ‘font-weight’:‘bold’}),
to the row, then the button positions move and I get lots of whitespace around the added text, which I don’t want.
Thanks