PRB: THEAD and TFOOTER Text Is Not Printed on Each Page (190278)



The information in this article applies to:

  • Microsoft Internet Explorer (Programming) 4.0
  • Microsoft Internet Explorer (Programming) 4.01
  • Microsoft Internet Explorer (Programming) 5.5

This article was previously published under Q190278

SYMPTOMS

When a table with THEAD and TFOOTER tags is printed, the expected behavior is for the header and the footer to be printed once in the entire document.

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce the Behavior

Create a standard HTML page with this a table tag formatted like this:
   <TABLE BORDER=1>
   <THEAD  style="display: table-header-group">

           <TR><TH> ...header information...------ 

      </THEAD>

      <TFOOT  style="display: table-footer-group">

           <TR><TD> ...footer information...------ 

      </TFOOT>


   <TBODY>
        <TR><TD>...first row of block two data...</TD></TR>
        <TR><TD> ...second row of block two data...</TD></TR>
        <TR><TD> ...third row of block two data...</TD></TR>
        (repeat enough times to span this table across two or more printed
        pages)
   </TBODY>
   </TABLE>
				
Print the HTML document.

REFERENCES

Visit the following MSDN Web site for additional information about the DHTML display property:

Visit the W3C Web site, section 12.1.3, for information about Groups of rows: the THEAD, TFOOT, and TBODY elements:

HTML 4.0 Specification
http://www.ietf.org/rfc/rfc1942.txt


Modification Type:MajorLast Reviewed:5/12/2003
Keywords:kbhtml kbpending kbprb KB190278