Vertical text

marchenkoartem2
1 Posts
marchenkoartem2 posted this 28 September 2020
Ask a Question

How can i make vertical text or rotate image(text) ?
Как сделать вертикальный текст ?

How can i make vertical text or rotate image(text) ? Как сделать вертикальный текст ?
Vote to pay developers attention to this features or issue.
2 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 28 September 2020

Добрый день,

Опции сделать вертикальный текст у нас нет. А картинку вам надо перевернуть заранее в любом редакторе или же в проводнике.

...................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Добрый день, Опции сделать вертикальный текст у нас нет. А картинку вам надо перевернуть заранее в любом редакторе или же в проводнике. ................................................... Sincerely, Hella Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
milan.kosir
11 Posts
milan.kosir posted this 27 July 2022

For text just add CSS class and in CSS do it like...

writing-mode: vertical-rl;

For images and other stuff, you need to use the transform property, which comes in two variants (to cover IE 9 if you want)

-ms-transform: rotate(90deg); /* IE 9 */
transform: rotate(90deg);
For text just add CSS class and in CSS do it like... writing-mode: vertical-rl; For images and other stuff, you need to use the transform property, which comes in two variants (to cover IE 9 if you want) -ms-transform: rotate(90deg); /* IE 9 */ transform: rotate(90deg);

Last edited 27 July 2022 by milan.kosir

You must log in or register to leave comments