How can I print a specific block / part of a web page?

How can I print a specific block / part of a web page? The print option looks like the print screen function. A.

+3
source share
2 answers

Use css with parameter media = print.

how

<link rel="stylesheet" type="text/css" href="print.css" media="print" />

Blocks that you do not want to print can set the display to: none.

+7
source

All Articles