Closed
Description
Can not print Node.js documentation from: https://nodejs.org/api/all.html .
Some CSS rules are not appropriate for print mode.
Before:
Fortunately, I found an simple solution(below).
At the bottom of style.css add this CSS rule:
@media print {
html {
height : auto;
}
#column2.interior {
display : none;
}
#column1.interior {
margin-left : auto;
overflow-y : auto;
}
}