How to

How to stop a table splitting across PDF pages

A webpage has no pages, so something has to decide where one ends and the next begins — and most sites never wrote print CSS to guide it. When a table row splits or a heading is orphaned, four settings change the outcome. Try them in this order.

Takes about 3 min

Steps

  1. Switch to landscape first

    If a table is involved, this usually fixes it. Wide rows that wrap to two or three lines become tall rows, and tall rows are what split. Stop them wrapping and they stop splitting.

  2. Go up a paper size

    A3, Tabloid or Ledger give a wide table a sheet it actually fits on. This usually beats scaling down, because you're giving content room rather than compressing it.

  3. Reduce the scale

    If a block nearly fits, drop scale by about 10% and re-check. Step down in 5% increments and watch that specific block.

  4. Or remove page breaks entirely

    Turn on Single Page Mode for one continuous page with no breaks at all.

  5. Check for a sticky header

    A pinned header redrawn on every page pushes content down and moves every break. Turn on Hide sticky elements and re-check.

Worth knowing

  • Most websites never set the CSS properties that control page breaks, so the engine has no instructions and breaks wherever the sheet runs out. That's an absence of guidance in the page, not a fault in the conversion.
  • You can't place breaks manually. The levers above are indirect but between them they cover almost every case.

Questions

Why does my table split across two pages?

A table row is a layout box, and if it doesn't fit in the space left on the sheet, it splits. Most sites don't tell the print engine to keep rows together. Switch to landscape so rows stop wrapping, go up a paper size, or reduce the scale.

Can I choose exactly where the breaks go?

Not by placing markers. Break positions come from the page's own CSS plus your paper size, scale and orientation, so you control them indirectly through those settings — or remove them entirely with Single Page Mode.

More on this in the full FAQ.

Related guides