XmlWorker 无法识别表格单元格上的边框底部。
这是我的代码:
<table>
<tbody>
<tr>
<th style="width: 20%; height: 40px; vertical-align: top; border-bottom: 1px solid gray">Your name</th>
<td style="width: 80%; border-bottom: 1px solid gray"></td>
</tr>
<tr>
<th style="height: 40px; vertical-align: top; border-bottom: 1px solid gray">Your lastname</th>
<td style="border-bottom: 1px solid gray"></td>
</tr>
</tbody>
</table>
我正在使用这个官方工具进行测试:http:
//demo.itextsupport.com/xmlworker/
(单击“html”按钮,在“字体大小”下,并粘贴代码)
我还在使用 iTextSharp + MvcRazorToPdf(两个 C# 库)进行测试。
问题:
我怎样才能让边界底部工作?
编辑:
根据此兼容性摘要:http ://demo.itextsupport.com/xmlworker/itextdoc/CSS-conformance-list.htm ,css 属性border-bottom
应该与 html 元素td
( cell
)一起正常工作