Forum Feature requests

Can Prince support CSS properties like rotate (not in Transform)

Dex
Hi there!

I think it'd be super helpful if Prince could support some newer properties like rotate (without being in transform). It's much easier to write css this way and would be a huge bonus for our site which uses newer CSS syntax.

Basic example from https://www.w3schools.com/cssref/tryit.php?filename=trycss_rotate:

<html>
<head>
<style>
div {
height: 50px;
width: 50px;
background-color: red;
rotate: 30deg;
}
</style>
</head>
<body>


</body>
</html>
chrisryland
Is

transform: rotate(30deg);

really that much harder to use than

rotate: 30deg;

I suppose it's a matter of using your existing stylesheets...
Dex
I guess the obvious counter-argument chrisryland, is "is it really that much harder for prince to keep up with modern css and parse these equivalent properties?"

If it's so easy for each individual customer to use old css, surely it's pretty easy for prince to support modern css particularly when they have 100s of customers paying multiple thousands of dollars every year. :/