Last active
September 19, 2025 21:23
-
-
Save dieseltravis/7f66ee9c6f463de2c78d02526cb6906e to your computer and use it in GitHub Desktop.
helpful print css you should use on your web pages
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 { | |
* { | |
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; | |
} | |
} |
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 { * { display: none !important; } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment