0

I have some web page displayed in web browser:

enter image description here

When the same page is on the print mode I need to display the content of the page bottom 500 px:

enter image description here

Is there any way to implement it?

Michael
  • 13,950
  • 57
  • 145
  • 288
  • 1
    Possible duplicate of [How to create a printable Twitter-Bootstrap page](http://stackoverflow.com/questions/12302819/how-to-create-a-printable-twitter-bootstrap-page) – Prateek Gupta Sep 18 '16 at 08:45
  • If the suggested link solve your issue I can close it as such? – Asons Sep 18 '16 at 10:53

1 Answers1

0

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

ynter
  • 277
  • 1
  • 5
  • 16