print.css 848 B

123456789101112131415161718192021
  1. @media print {
  2. * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  3. -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  4. a, a:visited { color: #444 !important; text-decoration: underline; }
  5. a[href]:after { content: " (" attr(href) ")"; }
  6. abbr[title]:after { content: " (" attr(title) ")"; }
  7. .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
  8. pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  9. thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  10. tr, img { page-break-inside: avoid; }
  11. @page { margin: 0.5cm; }
  12. p, h2, h3 { orphans: 3; widows: 3; }
  13. h2, h3 { page-break-after: avoid; }
  14. }