I'm trying to convert html to pdf, it works fine on browser but when I download pdf, css properties, transform and writing mode doesn't work. Here is css code example. I am using dinktopdf c# library.
.left-content h2 {
color: white;
text-transform: uppercase;
bottom: 65px;
left: -25px;
position: absolute;
writing-mode: vertical-rl;
transform: rotate(-90deg);
text-orientation: mixed;
}