我需要在 Apache-FOP 中表的列之间放置一个“间隙”:
<fo:table column-gap="2mm" width="156mm" height="260mm" table-layout="fixed" page-break-after="always">
<fo:table-column column-number="1" column-width="50mm"/>
<fo:table-column column-number="2" column-width="50mm"/>
<fo:table-column column-number="3" column-width="50mm"/>
<fo:table-body start-indent="0pt" text-align="start" font-family="Arial, Helvetica, Tahoma, sans-serif"
font-weight="normal" font-size="10pt">
// rows/cells stuff
</fo:table-body>
</fo:table>
我尝试使用 column-gap、spacing-before、margin-left 等,但列仍然粘在一起。知道如何在两者之间放置间隙吗?也许唯一的解决方案是创建“空”列?