Guest User

Untitled

a guest
Aug 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. How to place the text in the top right corner and not show buttons when printing
  2. John Doe
  3. TO: 124 test ave
  4. Somecity, CA 5555
  5.  
  6.  
  7.  
  8. TO : John Doe
  9. blah blah
  10. blah, CA 55555
  11.  
  12. table.myLabel
  13. {
  14. width: 550px;
  15. margin-top: 75px;
  16. margin-left: 200px;
  17. margin-right: auto;
  18.  
  19. }
  20.  
  21. .myLabel td
  22. {
  23. padding: 5px;
  24. }
  25. .myLabel td.myLabel div
  26. {
  27. text-align:right;
  28. margin-bottom: 3px;
  29. }
  30.  
  31. <link href="print.css" rel="stylesheet" media="print" type="text/css" />
  32.  
  33. input.print_button
  34. {
  35. display:none;
  36. }
Add Comment
Please, Sign In to add comment