jquery text rotation

前端 未结 5 1388
隐瞒了意图╮
隐瞒了意图╮ 2021-02-13 12:43

I\'ve got a simple text inside a div, something like the following;

This is an example text
5条回答
  •  感情败类
    2021-02-13 12:59

    It's not really possible in IE. At best, IE can only rotate in multiples of 90 degrees, and even that's a pain (IIRC). However, this answer claims otherwise.

    For modern browsers, use the transform, -webkit-transform, and -moz-transform, as suggested already.

    You might be able to bodge it using VML (Vector Markup Language) in IE. I think it can do arbitrary rotations.

提交回复
热议问题