将文本从水平位置旋转到垂直位置

thi*_*yup 1 html css jquery

是否可以在不使用闪光灯的情况下将文本从水平位置旋转到单个点的垂直位置?所以我会倾向于通过倾斜我的头来阅读相同的文字.

我以为你可以在jquery中做到这一点,但找不到插件.

ind*_*ago 5

我使用纯CSS,它对我来说非常好,这里是代码:

<div style="-webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); z-index:inherit; float:left">Not at all</div>
Run Code Online (Sandbox Code Playgroud)