I have a weird error when I want to print my webpage in Chrome. I am showing a table using Bootstrap, which is perfect for screen size (regardless of screen size). When I want to print a webpage in Chrome, the table is cropped and the print layout is perfect for Firefox.
I managed to reproduce my error in JSFiddle here .
Html code of my table:
<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>
Do you have an idea to fix this problem?
Maybe using another CSS bootstrap class for a table?
source share