print or save to pdf div content [ 1147 views ]
Sometimes we need only a part of a web page to print or to save to pdf. Here is a simple solution:
add these lines to the page stylesheet
@media print {
body * {
visibility: hidden;
}
#content, #content * {
visibility: visible;
}
#content {
position: absolute;
left: 0;
top: 0;
padding: 0;
margin: 0;
}
}
where the #content is the id of the target DIV.


