如何正确折叠 NetSuite 高级 PDF/HTML 模板单元格之间的边框?

问题描述 投票:0回答:0

我希望在 NetSuite 中使用高级 PDF/HTML 模板时折叠单元格之间的边框。

Example of current output

Example of desired output

我已经尝试在基本上任何地方添加 border-collapse 属性,但单元格之间的边框仍然显示为双。 例如:

table.table1 td {
        font-size: 9pt;
        border-collapse: collapse;
        border: 1px solid; 
        border-color: #aaaaaa;
      }
<table class="table1" style="width: 100%; margin-top: 10px; border-collapse: collapse;"><tr>
    <th colspan="5">Tracking No</th>
    <th colspan="3">${record.duedate@label}</th>
    <th colspan="3">${record.terms@label}</th>
    </tr>
    <tr>
    <td colspan="5">${record.trackingnumbers}</td>
    <td colspan="3">${record.duedate}</td>
    <td colspan="3">${record.terms}</td>
    </tr></table>
html css netsuite freemarker pdfhtml
© www.soinside.com 2019 - 2024. All rights reserved.