Skip to content

Instantly share code, notes, and snippets.

@bmarshall511
Created August 18, 2014 13:47
Show Gist options
  • Save bmarshall511/c3d452e888381c1d6d02 to your computer and use it in GitHub Desktop.
Save bmarshall511/c3d452e888381c1d6d02 to your computer and use it in GitHub Desktop.
@media print {
h1,
h2,
h3,
h4,
h5,
h6 {
page-break-after: avoid; // Prevent headings from being printed at the bottom of the page
}
article {
page-break-before: always; // Always start new articles on a new page
}
img {
page-break-inside: avoid; // Prevent images from being split up
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment