在pdf的空白页与飞碟

时间:2016-07-12 10:25:24

标签: java html css pdf flying-saucer

我面临一个非常烦人的问题,每次我尝试使用页面选择器时,都会创建一个空白页面。 为了避免一些重复的标志,我已经尝试了相关问题中给出的所有解决方案,但没有一个工作

CSS

    @page {
        size: a4 portrait;
    }  

    @page land { 
        size: a4 landscape;
    }

    .landscapePage { 
        page:land; height: 21cm; width: 28.6cm
    }

HTML

    <div>
        Portrait 1
    </div>
    <div class="landscapePage">
        landscape 1
    </div>
    <div>
        Portrait 2
    </div>

以下html提供了四页pdf:

  • portrait 1
  • landscape 1
  • 空白页(显然不需要)
  • portrait 2

有关如何删除此空白页的任何建议吗?

0 个答案:

没有答案