将HTML转换为PDF时CSS转换和书写模式属性出现问题dink转换为pdf

时间:2019-05-31 08:47:19

标签: c# html css pdf dinktopdf

我正在尝试将html转换为pdf,但在浏览器上工作正常,但是当我下载pdf时,css属性,转换和书写模式不起作用。这是css代码示例。 我正在使用dinktopdf c#库。

.left-content h2 {
        color: white;
        text-transform: uppercase;
        bottom: 65px;
        left: -25px;
        position: absolute;
        writing-mode: vertical-rl;
        transform: rotate(-90deg);
        text-orientation: mixed;
      }

1 个答案:

答案 0 :(得分:0)

尝试

-webkit-transform: rotate(90deg);

代替

transform: rotate(-90deg);