-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handling of TFOOT tag is incorrect #25
Comments
From ryan.mas on July 28, 2011 21:38:50 |
From fabien.menager on July 31, 2011 13:35:07 |
Thinking about this again after a post on the forum. The question of TFOOT support presents a particularly problematic issue where we have to back up from the bottom of the page when a footer is present. Not entirely impossible to address, perhaps the easiest method would be to "shorten" the available height when we're inside a table with a footer. |
So, to not open new issue about this very same problem i experience, just wanted to ask if anything is changed so far. |
No updates on this issue. |
So, just to clarify, if I want a header and footer that show up on every page, and I want to use HTML+CSS to do that, I need to use the method laid out here: http://stackoverflow.com/questions/7484318/header-in-pdf-page-using-dompdf-in-php ... as opposed to table headers and footers, correct? |
Hello
|
@akiuni |
Any news for this issue? |
Found the same behavior here, thead repeats on every page but tfoot doesn't. I'm using a fixed div at the bottom of the page as a workaround. Apparently the issue is in |
@andrefedalto |
Any news? |
nothing yet |
Original author: eclecticgeek (May 29, 2009 17:59:28)
What steps will reproduce the problem?
TFOOT sections. The table should span two pages in the rendered PDF.
What is the expected output?
The PDF should contain a table that spans two pages. The THEAD and TFOOT
should bookend the table on each page on which it appears.
What do you see instead?
The THEAD renders as expected, but the TFOOT is rendered as if it were a
normal table row.
Additional information:
The TFOOT grouping should appear before the TBODY grouping in the HTML code
as per the W3C specification:
http://www.w3.org/TR/html4/struct/tables.html#h-11.2.3
We may wish to consider allowing the TFOOT grouping to be placed at the end
of the table code since this is a likely scenario.
Original issue: http://code.google.com/p/dompdf/issues/detail?id=18
The text was updated successfully, but these errors were encountered: