Vertically flowing text with css

后端 未结 4 2076
你的背包
你的背包 2021-01-15 14:57

I would like to have a div with some text in it. But I\'d like the text to flow vertically instead of horizontally. Like this;

M

y

t

e

<
4条回答
  •  一生所求
    2021-01-15 15:16

    Please find the answer here you can use text-orientation and

    Please check https://jsfiddle.net/yu7qr809/

    div{
      text-orientation: upright;
      writing-mode: vertical-lr;
     }
    

提交回复
热议问题