I am using FlyingSaucer to generate an image from HTML and I am restricted to CSS 2.1. I would like to use CSS to rotate text in a <div>
but these rotate styles are only supported on CSS 3:
-o-transform: rotate(-15deg);
-ms-transform: rotate(-15deg);
-webkit-transform: rotate(-15deg);
transform: rotate(-15deg);
I cannot use Javascript, only HTML and CSS.
Is there any way to rotate text using CSS 2.1?