Chrome updated to a new version recently (Version 58.0.3029.96) and now my page break has stopped working. I'm using a div
for the page break:
<div id="pagebreakGrid" class="pagebreak" runat="server" visible="false"></div>
Then is css I had:
.pagebreak {
page-break-after: always;
}
I also tried changing the css to this but it didn't fix it:
.pagebreak {
display: block;
page-break-after: always;
position: relative;
}
This code used to work fine and still works in Internet Explorer. Does anyone know how to get page breaks to work in the new version of Chrome?