Skip to content

Instantly share code, notes, and snippets.

@hgirish
Created December 2, 2023 07:54
Show Gist options
  • Save hgirish/a68217cc9d45ad8ff91d1a110a476ce8 to your computer and use it in GitHub Desktop.
Save hgirish/a68217cc9d45ad8ff91d1a110a476ce8 to your computer and use it in GitHub Desktop.
<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