Skip to content

Instantly share code, notes, and snippets.

@dieseltravis
Last active September 19, 2025 21:23
Show Gist options
  • Save dieseltravis/7f66ee9c6f463de2c78d02526cb6906e to your computer and use it in GitHub Desktop.
Save dieseltravis/7f66ee9c6f463de2c78d02526cb6906e to your computer and use it in GitHub Desktop.
helpful print css you should use on your web pages
@media print {
* {
background-color: #fff;
color: #fff;
visibility: hidden;
break-after: always;
break-before: always;
}
*::before, *::after {
content: "Don't waste paper!";
display: block;
visibility: visible;
font-size: 64pt;
color: cyan;
}
*::after {
color: yellow;
}
}
@media print { * { display: none !important; } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment