我想在生成的pdf文件中获取页脚。我正在使用这个库 https://github.com/andyhutch77/MvcRazorToPdf
有什么方法可以将我的部分内容放到页面底部吗?不幸的是,pdf不响应position:absolute; bottom:0px;
或margin-bottom。
该页面在页面上显示未知数量的记录,因此我不能静态地执行此操作。
答案 0 :(得分:2)
我找到了解决这个问题的方法。它不是很整洁,但我怀疑还有其他方法,因为MvcRazorToPdf不支持边距和位置样式。
<table id="wrapper" style="height:100%;">
<tr>
<td valign="top">
Put your site content here.
</td>
</tr>
<tr>
<td valign="bottom">
Put your footer here.
</td>
</tr>
</table>