Print a very wide HTML table without clipping right hand side

后端 未结 4 1459
野趣味
野趣味 2020-12-08 15:12

I have a table with several columns.

THE SPECIFIC PROBLEM

When you print such table, the columns on right will not print, not even when you print in landsc

4条回答
  •  醉梦人生
    2020-12-08 15:58

    Here is my go at this:

    • Demo and Code
    • Article

    What I did was:

    • Create a fixed width div that fits nicely on an A4 size page
    • Copied the table inside that div
    • Scroll the table x pixels to bring the desired portion in "focus" using CSS positioning
    • Repeat this process y times

    Example: if the table is 2000px wide and page width is set to 600px then y should be 4 and x will be 0, 600, 1200 and 1800.

提交回复
热议问题