Can a page break be implemented in an HTML table? I've attempted to add page breaks to the following HTML:
<html>
<title>testfile</title>
<meta http-equiv="expires" content="0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
<style type="text/css">
PB {
page-break-inside: avoid;
}
</style>
</head>
<body>
<table width="100%">
<tr>
<td width="30%"><i>Group:</i>
</td>
<td width="70%">Test Group 1</td>
</tr>
<tr>
<td><i>Title:</i>
</td>
<td><b>Test Title 1</b>
</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<br/>
<table width="100%">
<PB>
<tr>
<td width="30%"><i>Group:</i>
</td>
<td width="70%">Test Group 2</td>
</tr>
<tr>
<td><i>Title:</i>
</td>
<td><b>Test Title 2</b>
</td>
</tr>
<tr>
<td> </td>
</tr>
</PB>
</table>
<br/>
<table width="100%">
<PB>
<tr>
<td width="30%"><i>Group:</i>
</td>
<td width="70%">Test Group 3</td>
</tr>
<tr>
<td><i>Title:</i>
</td>
<td><b>Test Title 3</b>
</td>
</tr>
<tr>
<td> </td>
</tr>
</PB>
</body>
</html>
The page breaks function correctly in FireFox, but are causing issues in IE10.
I've heard that IE doesn't handle page breaks well in tables. If this is true, does anyone know of a workaround or alternative solution that could be used instead?
Thank you!