Help Needed: I encountered an issue where I wrote CSS to display page breaks in my HTML. It seems to work fine in Internet Explorer, but not in Firefox and Chrome. Here is the inline CSS I used:
<br style="page-break-after: always;">
Below is a snippet of my HTML code:
<asp:Panel ID="pnlHide" runat="server" Visible="false">
<br style="page-break-after: always;">
</asp:Panel>
Note: The above line is within an asp:panel control in ASP.NET, which renders as DIV in HTML.
If anyone has suggestions on how to change the CSS for it to work across all browsers, please feel free to share. Any help would be greatly appreciated!