Hey, I've been experimenting with some CSS transforms and I'm having trouble getting this to work properly.
I'm using Bootstrap 4 to create two columns; an image on the left and text on the right. I want the text to be centered vertically and displayed vertically, so I used:
transform:rotate(90deg)
on the text and added:
align-items: center;
text-align: center;
to the column itself. The issue is that on mobile devices, the text breaks into multiple lines instead of staying in one vertical line.