Created
August 20, 2013 17:41
-
-
Save zhuangya/6284700 to your computer and use it in GitHub Desktop.
break the page by css.
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title> Page break test </title> | |
| <link rel="stylesheet" media="all" href="./style.css"> | |
| </head> | |
| <body> | |
| <div class="page"> Page 1 </div> | |
| <div class="page"> Page 2 </div> | |
| </body> | |
| </html> |
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 { | |
| .page:after { | |
| content: '\0020'; | |
| display: block; | |
| page-break-before: always; | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment