Is there a way to get a web page header/footer printed on every page?

前端 未结 4 1844
轻奢々
轻奢々 2020-11-27 05:55

Based on my research, it seems that what I want to do is not possible, but in case something has changed, I wanted to check to see if anyone had come up with a way to do thi

4条回答
  •  感情败类
    2020-11-27 06:36

    I would suggest to divide the page in table, and add the header part to first row and the footer part to the last row. The contents of the rows between the first and last rows can be changed dynamically so you will get the constant header and footer at desired pages.

    ----------
    ROW1    HEADER
    ----------
    ROW2   
     Insert dynamic contents here
    ROW N-1
    ----------
    ROW N Footer
    

提交回复
热议问题