5

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;
      }
Ucha
  • 51
  • 4

1 Answers1

1

Try

-webkit-transform: rotate(90deg);

Instead of

transform: rotate(-90deg);
NearHuscarl
  • 66,950
  • 18
  • 261
  • 230