I'm working on Shower presentation template and really want to be able to convert in to PDF via Prince. There's no other options, to be honest. That's why I'm disturbing you with all those bugs and now with feature request
I have .middle class name to center everything in the middle of the slide:
…but it doesn't work in Prince.
So I wonder, would it be possible to use CSS Transforms in the near future?
ps: Now I'm thinking about extra JS to emulate transform:translate behavior for .middle class…
I have .middle class name to center everything in the middle of the slide:
/* Middle */
.middle {
position:absolute;
top:50%;
left:50%;
-webkit-transform:translate(-50%, -50%);
-moz-transform:translate(-50%, -50%);
-ms-transform:translate(-50%, -50%);
-o-transform:translate(-50%, -50%);
transform:translate(-50%, -50%);
}
…but it doesn't work in Prince.
So I wonder, would it be possible to use CSS Transforms in the near future?
ps: Now I'm thinking about extra JS to emulate transform:translate behavior for .middle class…