0

我正在尝试将 html 表格转换为 pdf 格式。当我在浏览器中查看表格时,没有出现白线,但是当我将其导出为 pdf 时,每个表格单元格和行之间都有白线。我已经尝试了每种 css 样式来解决它,但它们都不起作用。我正在使用 Winnovative HTML 到 PDF 转换器。有没有人遇到过这个问题或知道如何解决?

.pricelistcontainer table {
width: 100%;
display: table;
padding: 0;
margin: 0;
font-size: 100%;
border-collapse: collapse;
/*margin-top: 25px;
margin-left: 52px;*/
border: none;

}

.pricelistcontainer table th {
        border: none;
        background: #000000;
        vertical-align: top;
        color: #ffffff;
        font-family: arial,sans-serif;
        /*line-height: 1.5;*/
        font-weight: bold;
        padding: 4px;
    }



.pricelistcontainer table td {
        /*line-height: 1.5;*/
        border: none !important;
        margin: 0;
        background: #dae2eb;
        vertical-align: middle;
        font-family: arial,sans-serif;
        padding-left: 2px;
        color: #000;
        padding-top: 4px;
        padding-right: 4px;
        padding-left: 4px;
    }
4

2 回答 2

0

据我所知,Winnovative 使用 Internet Explorer 渲染引擎,因此您可能需要检查您在 IE 中看到的内容,然后调整您的 CSS 以适应它。

或者,您可以使用基于 webkit 的解决方案,例如wkhtmltopdf或 htm2pdf 提供的API

于 2013-07-06T21:37:13.437 回答
0

您可以使用dopdf,只需安装它并在网页中按 ctrl + p 即可。它将显示打印选项。选择默认打印机为dopdf并保存。

于 2013-07-05T08:31:51.857 回答