Print table footer at the very bottom on last page

后端 未结 3 1271
天命终不由人
天命终不由人 2021-01-01 13:18

I am using a table to create a footer on every page (works in Firefox, that\'s enough).

A JS Fiddle: https://jsfiddle.net/j9k2xzze/

(right click on the outpu

3条回答
  •  清酒与你
    2021-01-01 13:32

    Hi I just added the following media query to your CSS. And it WORKS

    @media print {
     #footer {
        position: absolute;
        bottom: 0;
      }
    }
    

    Check the following fiddle

    https://jsfiddle.net/jjsqgaza/

提交回复
热议问题