Hello,
To add a page break you can use the “Page Break” block. By clicking on the “+” icon and then selecting the “Page Break” block Page. You can then choose the “A4” size for the page break.
Repeat these steps as needed to create multiple pages with tables and images in your WordPress post or page.
Also, remember that You may need to adjust the size of your table cells or images to fit within the A4 page size, especially if you have a lot of images in your table. You can also try using a plugin, such as “TablePress”, to make it easier to create and manage tables in WordPress.
You can insert page breaks using CSS. To automatically insert page breaks so that each page prints on an A4 paper, you can use the following CSS:
@media print {
.page-break {
page-break-after: always;
}
}
You can then add a class of page-break to any element you want to have a page break after. For example, if you want to insert a page break after each table in a gallery, you can add the class to the <table> element.
You can then add a class of page-break to any element you want to have a page break after. For example, if you want to insert a page break after each table in a gallery, you can add the class to the <table> element.
Thanks for the replies. I’m using the classic editor so don’t have the ‘Page Break’ block. Unless it’s somewhere obvious that I can’t see it?
I have no idea about CSS as my web page skills are definitely ‘beginner’