Vertically flowing text with css

后端 未结 4 2124
你的背包
你的背包 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:18

    .yourtext { -moz-transform: rotate(-90deg);
                -webkit-transform: rotate(-90deg);
                -moz-transform-origin: top right;
                -webkit-transform-origin: top right;
                filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    }
    

提交回复
热议问题