如何设置页面的宽度?

时间:2017-08-06 17:47:07

标签: python pdf reportlab xhtml2pdf pisa

我一直在努力增加pdf的宽度,但似乎没有任何效果:

<style type="text/css">
@page {
    size: a4 landscape;
    width: 27cm;  /* not working */
    @frame content {
        top: 2cm;
        width: 27cm;  /* not working */
        margin-left: 1.5cm;  /* changing these values work!! */
        margin-bottom: 2cm;  /* changing these values work!! */
    }
}
</style>

无论我尝试什么,内容宽度似乎都不会增加。我的所有<div><tables>都是100%,减少边距会增加表的大小,因此100%可能正常工作。但是如何增加主容器的宽度?从我可以推断出来看,它看起来保持一些默认宽度,并且不会增加,因为portraitlandscape都会产生相同的宽度内容。

有人有任何想法吗?

0 个答案:

没有答案