When I want to rotate a div I want to rotate the text as well, but I have still issues with anti-aliasing. The text is blurry and I cant fix it. The effect occurs in Firefox and Chrome.
I found this solution, but it didn't work for me.
-webkit-backface-visibility: hidden;
html
<div id="rotate">
<span>Hi, iam rotated blurry text </span>
</div>
css
#rotate{
margin-top:30px;
-moz-transform: rotate(-9deg);
-ms-transform: rotate(-9deg);
-o-transform: rotate(-9deg);
-webkit-transform: rotate(-9deg);
transform: rotate(-9deg);
background:#292929;
font-size:30px;
color:green;
display:inline-block;
}
link: http://jsfiddle.net/P52Yu/6/
plz help :)