How can I route a text 90 degress in webflow
like this
How can I route a text 90 degress in webflow
like this
That is done via a CSS transform which can be done in the designer.
hi @Refia_Gezen I will just add small note that to get text direction you have in img you will need to use writing-mode
together with transform
.v-text{
writing-mode: vertical-lr;
transform: rotate(180deg);
}
Into 2D & 3D transform you can achieve too (in case you can’t use embed)