当前位置: 首页 > 工具软件 > xhtmlrenderer > 使用案例 >

java 使用xhtmlrenderer 通过 xhtml 生成pdf过程中的 collapse失效以及空白边问题

屠晟睿
2023-12-01

 

 

table{
        border-collapse: collapse;
    }

1. 该样会导致生成的pdf边框消失的问题。 可替换成如下样式便可

table{
        border-spacing: 0;
    }

参考: https://stackoverflow.com/questions/10512324/css-to-pdf-the-css-in-flying-saucer-fs-table-paginate-result-in-border-collap

 

 

2.通过xhtmlrenderer生成的pdf文件由于出现空白边框,导致内容可能会挤到另一边造成格式出错的问题

添加该样式

@page {
      margin: 0;
    }

就能去除大部分的白边

 

 

 

 

 

 类似资料: