Created
December 2, 2023 07:54
-
-
Save hgirish/a68217cc9d45ad8ff91d1a110a476ce8 to your computer and use it in GitHub Desktop.
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
<style> | |
@media screen { | |
#printSection { | |
display: none; | |
} | |
} | |
@media print { | |
body * { | |
visibility: hidden; | |
} | |
#printSection, #printSection * { | |
visibility: visible; | |
height: auto !important | |
} | |
#printSection { | |
position: absolute; | |
left: 0; | |
top: 0; | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment