"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Repeat Table Headers on Each Page When Printing?

How Can I Repeat Table Headers on Each Page When Printing?

Published on 2024-12-25
Browse:694

How Can I Repeat Table Headers on Each Page When Printing?

Repeating Table Headers in Print Mode

When a table spans multiple pages during printing, it's often desirable to have the header rows (TH elements) repeated on each page for easy reference. CSS provides a mechanism to achieve this.

Solution: Using the THEAD Element

The THEAD element in CSS is designed specifically for this purpose. It allows you to define a set of header rows that should be repeated on every printed page. Here's how to use it:

  1. Wrap the table headers in a THEAD element:

    Header 1Header 2Header 3
  2. Add the following style to your @page rule:

    @page {
      margin: 1cm;
      @top-left {
        content: element(thead);
      }
    }

Explanation:

  • The thead element serves as a container for the header rows.
  • The @page rule sets the page margins and includes a @top-left subrule with content property set to element(thead).
  • This configuration instructs the browser to render the contents of the THEAD element at the top-left corner of every printed page, effectively repeating the table headers.

By utilizing the THEAD element, you can ensure that your table headers are consistently displayed on each printed page, providing a clear and convenient reference for your readers.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3