Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. @media screen {
  2. #printSection {
  3. display: none;
  4. }
  5. }
  6.  
  7. @media print {
  8. body * {
  9. visibility:hidden;
  10. }
  11. #printSection, #printSection * {
  12. visibility:visible;
  13. }
  14. #printSection {
  15. position:absolute;
  16. left:0;
  17. top:0;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement