5

我正在尝试将 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;
      }
4

1 回答 1

0

尝试

-webkit-transform: rotate(90deg);

代替

transform: rotate(-90deg);
于 2020-09-29T15:25:18.453 回答