Skip to content

Instantly share code, notes, and snippets.

@caio-andres
Created April 14, 2024 01:37
Show Gist options
  • Save caio-andres/3d0b2c8ee8f7b98bf0fa07beadf3f0f4 to your computer and use it in GitHub Desktop.
Save caio-andres/3d0b2c8ee8f7b98bf0fa07beadf3f0f4 to your computer and use it in GitHub Desktop.
Print a element by id | CSS - @media tip
@media print {
body * {
visibility: hidden;
}
#idWhichYouWillPrint,
#idWhichYouWillPrint * {
visibility: visible;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment