I want my website users to be able to print pages in either portrait or landscape mode.
When printing from Google Chrome using Bootstrap 3.3.7, the Chrome print settings has a Layout option. Simply changing the css/js to 4.0.0, the Chrome print settings no longer has the Layout option. I suspect this has something to do with one of these CSS directives:
@page
@media
I was able to fix this by adding this CSS:
@page {
size: auto;
}
In Bootstrap 4.5 below code worked do not use ;
@media print { @page {size: auto !important} }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With