Encountering a strange issue while attempting to print my webpage in Chrome. Using Bootstrap, I have a table that adjusts perfectly to the screen size but gets cropped when trying to print in Chrome, unlike Firefox where it prints perfectly.
Here is a link to JSFiddle where I reproduced the bug: here.
The HTML code for my table is as follows:
<table class="table table-condensed">
<thead>
<tr>
<th>Col1</th>
<th>Col2</th>
<th>...</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="...">
<td>...</td>
<!-- ... -->
</tr>
<tr class="separator empty" />
</tbody>
</table>
Any suggestions on fixing this issue?
Perhaps utilizing different Bootstrap CSS classes for the table?