Print From Browser Using Screen CSS?

13,611

I don't think any browser offers this option as default.

Using a developer tool such as Firebug (for Firefox) then you can edit the live HTML to change the appropriate media attributes on the <link rel="stylesheet" elements. You can then print using the screen CSS (or whatever CSS you like).

However, if the developer has specified a print stylesheet then it's usually to make things better. If you were to print using the screen stylesheet then it might not appear like the screen version since it might be reliant on background-images (which don't print by default), amongst other things. So, if you want to print exactly what you see on the screen, you're probably better off taking a screenshot.

Share:
13,611

Related videos on Youtube

Jamie Kitson
Author by

Jamie Kitson

Updated on September 17, 2022

Comments

  • Jamie Kitson
    Jamie Kitson over 1 year

    is it possible to ask a browser to print using the screen CSS rather than the print CSS?

  • Falk
    Falk over 7 years
    +1 for this answer. I have to say that some developers just use a css framework and it sometimes makes things just horrible. Editing HTML, and taking screen-shots are both good ideas. In Firefox you can also use the developer tool to screen-shot a specific node. this is use-full because you don't need to merge several images.