Guest awilinsk Posted March 7, 2012 Posted March 7, 2012 I have a web page that displays data in a table from a database. I am using standard HTML markup below. When the tbody can be printed on one page, it prints. When the tbody element has to span multiple pages because there is a lot of data, it does not print. How do I fix this issue? <table> <thead> <tr> <th>Column 1</th> <th>Column 2</th> </tr> </thead> <tbody> <tr> <td>Data 1</td> <td>Data 2</td> </tr> ... <tr> <td>Data 1</td> <td>Data 2</td> </tr> </tbody> </table> Continue reading... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.