I have a HTML page, which contains several pieces of text that are rotated using the following piece of CSS:
.rotate {
transform: rotate(90deg);
transform-origin: 50% 50%;
}
When I pull up the page directly in the browser this renders as expected. When I render the page through PhantomJS, it seems to ignore the rotation.
I upgraded to Phantom 2.0.0, but still the same issue.
Is there any way to make this work?