-
-
Couldn't load subscription status.
- Fork 33.6k
Closed
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.feature requestIssues that request new features to be added to Node.js.Issues that request new features to be added to Node.js.
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;
}
}
Metadata
Metadata
Assignees
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.feature requestIssues that request new features to be added to Node.js.Issues that request new features to be added to Node.js.
