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>