1

我想知道如何在打印时在本页底部添加有关页面内容的所有脚注,而不是在最后一页上添加文档末尾的所有脚注。

我的问题是这个问题的预期重复,因为我想要一个纯 html/css(并且没有 javascript)的解决方案

非常感谢 :)

4

1 回答 1

0

您可以使用@media css 样式方法:

@media print {
/* css here move the footnotes to bottom*/
}

这只会在您打印时应用 css 样式。

例如,

 @media print {
    #footnotes {bottom: 0px}
    }

但我想我误解了你的问题,实际上你想在每页的底部为多页添加脚注......对此感到抱歉。

于 2013-05-25T23:36:20.103 回答