Im using CSS Transforms to rotate an h2 5deg.
For some reason the letters are out of alignment.
Take a look at an example here
http://dev.bestprintideas.com/bpi/image.png
Heres the CSS
.note-offer h2 {
color: #626262;
text-shadow: none;
text-transform: none;
margin: 15px 0 10px 25px;
-moz-transform: rotate(-5deg);
-webkit-transform: rotate(-5deg);
}
HTML
<div class="note-offer">
<div class="clip"></div>
<h2>
<span class="orange">The Essentials</span> <div>Package</div>
</h2>
<img src="http://mydomain.com/123/200-tag.png">
<p>Duis lobortis ligula vitae mauris lobortis congue. Morbi cursus porttitor feugiat. Aliquam tempus, nunc sed tempor volutpat, dolor lorem mollis quam, a elementum sapien purus ac
<a class="read-more" href="http://dev.bestprintideas.com/bpi/offers/the-essentials-package/">Learn more…</a>
</p>
</div>
Why is this happening? Does anyone know how to fix it. Its happening in both FF 3.6 and Chrome 5
EDIT: It seems to work correctly in Chrome 5 for Win and mac but not linux. Its having issues in FF 3.6 for Win, Mac, linux and its working perfectly in Safari 5 on Mac