1

i would like to know how to have all footnotes concerning the content of a page at the bottom of this page when printing, instead of having all footnotes at the end of the document, on the last page.

My question is an intended duplicate of this one because i would like a solution in pure html/css (and no javascript).

Many thanks :)

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 に答える