Created
August 18, 2014 13:47
-
-
Save bmarshall511/c3d452e888381c1d6d02 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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