Created
December 29, 2010 08:47
-
-
Save martinsam/758338 to your computer and use it in GitHub Desktop.
Feuille style css print
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
| body { | |
| width: auto!important; | |
| margin: auto!important; | |
| font-family: serif; | |
| font-size: 12pt; | |
| background-color: #fff!important; | |
| color: #000!important; | |
| } | |
| p, h1, h2, h3, h4, h5, h6, blockquote, ul, ol { | |
| color: #000!important; | |
| margin: auto!important; | |
| } | |
| .print { | |
| display: block; /* affichage des éléments de classe print */ | |
| } | |
| p, blockquote { | |
| orphans: 3; /* pas de ligne seule en bas */ | |
| widows: 3; /* pas de ligne seule en haut */ | |
| } | |
| blockquote, ul, ol { | |
| page-break-inside: avoid; /* pas de coupure dans ces élements */ | |
| } | |
| h1 { | |
| page-break-before: always; /* chaque titre commence sur une nouvelle page */ | |
| } | |
| h1, h2, h3, caption { | |
| page-break-after: avoid; /* pas de saut après ces éléments */ | |
| } | |
| a { | |
| color: #000!important; | |
| text-decoration: underline!important; | |
| } | |
| a[href]:after { | |
| content: " (" attr(href) ")"; /* affichage des URL des liens */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment