We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ ] Feature request [x ] Bug report [ ] Documentation
When printing a long page, some pages are cutoff in portrait mode, however they are available in landscape mode.
I have found this is a problem with Bootstrap 3.0 itself as described in their bug: twbs/bootstrap#22425
The work around is to add page-break-after: always; to the .container:
.container { page-break-after: always; }
I also had to cancel out the padding on the .box-body:
@media print { .box-body { padding: 0; } }
Hope this helps someone
The text was updated successfully, but these errors were encountered:
Hi @almasaeed2010 , can i work on this issue ?
Sorry, something went wrong.
No branches or pull requests
Issue type:
[ ] Feature request
[x ] Bug report
[ ] Documentation
Environment:
Description:
When printing a long page, some pages are cutoff in portrait mode, however they are available in landscape mode.
I have found this is a problem with Bootstrap 3.0 itself as described in their bug:
twbs/bootstrap#22425
The work around is to add page-break-after: always; to the .container:
.container {
page-break-after: always;
}
I also had to cancel out the padding on the .box-body:
@media print {
.box-body {
padding: 0;
}
}
Hope this helps someone
The text was updated successfully, but these errors were encountered: