I have some web page displayed in web browser:
When the same page is on the print mode I need to display the content of the page bottom 500 px:
Is there any way to implement it?
I have some web page displayed in web browser:
When the same page is on the print mode I need to display the content of the page bottom 500 px:
Is there any way to implement it?
The best option is probably to create a separate stylesheet, something like
<link rel="stylesheet" type="text/css" media="print" href="printable.css">
In this file you can add all styles that will only be picked up by the print mode of the browser