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